Skip to content

v3.0.0

Compare
Choose a tag to compare
@k0nserv k0nserv released this 07 Mar 11:21

Breaking

Change implementation of amimation callbacks to include boolean completed flag.

Before

textfield.setTitleVisible(false, animated: true) {
	// Perform callback actions
}

Now

textfield.setTitleVisible(false, animated: true) { completed in
	// Perform callback actions using completed flag
}

See (#112)[https://github.com//pull/112]