"Hide keyboard when pressing Done"

Mon 26 October 2009

// You need to add this method to your controller class

- (BOOL)textFieldShouldReturn:(UITextField *)textField{

[textField resignFirstResponder];

return YES;

}