I created a Text Field in Interface Builder. I set it\'s \"Return Key\" to Done. This is a one line only input (so it wont need multiple lines).
How do I hide the virt
Implement the delegate method UITextFieldDelegate, then:
UITextFieldDelegate
- (void)viewDidLoad { [super viewDidLoad]; self.yourIBtextField.delegate = self; } - (BOOL)textFieldShouldReturn:(UITextField *)textField { [textField resignFirstResponder]; return NO; }