Hello.
I have a project in Xcode. It has a View controller, on which the text field is located. It is necessary to make so that at input of a certain word other View controller opened. How to do it?
Thank.
Hello.
I have a project in Xcode. It has a View controller, on which the text field is located. It is necessary to make so that at input of a certain word other View controller opened. How to do it?
Thank.
UITextFieldDelegate method:
- (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string View what is being introduced, and make the transition to a new view controller in a way that you like.
Source: https://ru.stackoverflow.com/questions/357045/
All Articles