Guest User

Untitled

a guest
Jun 24th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. #import "SomeViewController.h"
  2.  
  3. @implementation SomeViewController
  4.  
  5. @synthesize textField;
  6.  
  7.  
  8. - (void)viewDidLoad {
  9. [super viewDidLoad];
  10.  
  11. [self.textField setDelegate:self]; // important
  12. }
  13.  
  14.  
  15. // deactivate the keyboard when done
  16. - (BOOL)textFieldShouldReturn:(UITextField *)theTextField {
  17. [theTextField resignFirstResponder];
  18. return YES;
  19. }
  20.  
  21.  
  22. @end
Add Comment
Please, Sign In to add comment