Guest User

Untitled

a guest
May 24th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. - (BOOL)textFieldShouldReturn:(UITextField *)textField {
  2. myPicker.hidden = YES;
  3. [textField resignFirstResponder];
  4. self.currentEditingTextField = nil;
  5. return YES;
  6. }
  7.  
  8. - (BOOL)textFieldShouldBeginEditing:(UITextField *)textField {
  9. self.currentEditingTextField = textField;
  10. return TRUE;
  11. }
  12.  
  13.  
  14. WHEN I NEED TO HIDE IT
  15.  
  16. if (self.currentEditingTextField) {
  17. [self.currentEditingTextField resignFirstResponder];
  18. }
Add Comment
Please, Sign In to add comment