I have the following code:
- (void)viewDidLoad
{
UITapGestureRecognizer *tap = [[UITapGestureRecognizer alloc] initWithTarget:self
action:@selector(dismissKeyboard)];
[self.view addGestureRecognizer:tap];
tap.cancelsTouchesInView = NO;
tap.delegate = self;
[tap release];
}
-(void)dismissKeyboard {
[self.textField resignFirstResponder];
}
The textField has a clearButton and the auto correction is enabled. When I click on the clearButton, everything works fine and the keyboard still appears after the UITextField is cleared. However, when I don't want to accept the suggested auto correction, the keyboard disappears and my text is replaced by the suggested one.
I need the UITapGestureRecognizer because I have the UITextField inside a UITableView, so when the user clicks outside the UITextField, I want to resign the keyboard.
How can I fix this, so that it is possible to reject the auto correction, when the user wants, and the keyboard is still active? Why does this work properly with the clearButton, but not when rejecting the auto correction?
EDIT: It works properly with the clearButton because it is inside the UITextField. Thus, the gesture isn't fired. But when clicking on the suggested text correction, it is fired... Is there a way to check if the user clicked on the suggested text correction?