Guest User

Untitled

a guest
Jul 22nd, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. myTextField.delegate = self;
  2.  
  3. // In Header
  4. UITextField *currentField;
  5.  
  6. @property (nonatomic, retain) UITextField *currentField;
  7.  
  8. // In Implementation
  9. - (void)textFieldDidBeginEditing:(UITextField *)textField
  10. {
  11. self.currentField = textField;
  12. }
  13.  
  14. [self.currentField resignFirstResponder];
Add Comment
Please, Sign In to add comment