You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 19, 2020. It is now read-only.
Update this method reloadTextFields in BSKeyboardControls.m with following method.
/* Reload text fields */
(void)reloadTextFields
{
// Add the keyboard control as accessory view for all of the text fields
// Also set the delegate of all the text fields to self
for (id textField in self.textFields)
{
if ([textField isKindOfClass:[UITextField class]])
((UITextField *) textField).inputAccessoryView = self;
else if ([textField isKindOfClass:[UITextView class]])
((UITextView *) textField).inputAccessoryView = self;
else if ([textField isKindOfClass:[UISearchBar class]])
((UISearchBar *) textField).inputAccessoryView = self;
}
}
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I want to implement BSkeyboardcontrol for uisearchbar ..but it does't works
The text was updated successfully, but these errors were encountered: