Guest User

Untitled

a guest
Jan 21st, 2019
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. - (IBAction) makeKeyboardGoAway
  2. {
  3. [txtName resignFirstResponder]; //Fecha teclado
  4. }
  5.  
  6. - (BOOL)textFieldShouldReturn:(UITextField *)textField
  7. {
  8. [txtName resignFirstResponder]; //Fecha teclado
  9. return YES;
  10. }
  11.  
  12. - (void)didReceiveMemoryWarning
  13. {
  14. // Releases the view if it doesn't have a superview.
  15. [super didReceiveMemoryWarning];
  16.  
  17. // Release any cached data, images, etc that aren't in use.
  18. }
Add Comment
Please, Sign In to add comment