У меня есть текстовое поле, которое, по-видимому, успешно называет методы делегата, поскольку следующий метод стреляет, когда я выявляю на испытательной области, но никаких шоу клавиатуры.
- (BOOL)textFieldShouldBeginEditing:(UITextField *)textField
{
NSLog(@"should begin editing");
return YES;
}
Какие-либо идеи, относительно почему?
A couple of details: This text field happens to be in a view controller in a storyboard. The first time I segue to this view the text field works fine. The subsequent times I segue to this view it does not work. I imagine this is a big clue to why I am getting the described behavior, but I have not been able to figure it out yet.