Если у вас есть TextField
, который, как я полагаю, и получает ваш пользовательский ввод. Используйте UITextFieldDelegate
методы Did
, а не Should
- (void)textFieldDidBeginEditing:(UITextField *)textField
{
//Do textfield animations and other view animations here
}
Не делайте анимацию;
- (BOOL)textFieldShouldBeginEditing:(UITextField *)textField
{
//Don't do textfield animations and other view animations here
//This is where the system does its own animations; raising the keyboard, etc
}