We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I want to call function in item handler. On respective item click I want to perform an action. Any help?
let item = KCFloatingActionButtonItem() item.icon = UIImage(named: "red_bar") item.title = "RECORD" item.handler = handler item.titleColor = UIColor(red: 1, green: 0.8, blue: 0, alpha: 1.0)
The text was updated successfully, but these errors were encountered:
Hello, @ImranIB You can assign to handler.
item.handler = { item in // ... }
Sorry, something went wrong.
Thanks @kciter. issue resolved
Good This issue is closed. 😄
No branches or pull requests
I want to call function in item handler. On respective item click I want to perform an action. Any help?
let item = KCFloatingActionButtonItem()
item.icon = UIImage(named: "red_bar")
item.title = "RECORD"
item.handler = handler
item.titleColor = UIColor(red: 1, green: 0.8, blue: 0, alpha: 1.0)
The text was updated successfully, but these errors were encountered: