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
- (void) textFieldDidBeginEditing:(UITextField *)textField
{
// Force displaying all suggestions when beginning edition of text fieldid<UITextFieldDelegate> autocompleteInputView = (id<UITextFieldDelegate>)textField.inputAccessoryView;
[autocompleteInputView textField:textField shouldChangeCharactersInRange:NSMakeRange(0, 0) replacementString:@""];
}
Hi
I try to set the "minimumCharactersToTrigger" to zero, to have all the suggestion when keyboard appear, doesn't work.
(by the way, nice work!)
The text was updated successfully, but these errors were encountered: