I have a button that when pressed brings up a keyboard for a textfield:
- (IBAction)textButtonPress:(id)sender {
[self.textField becomeFirstResponder];
}
The problem I have is that when I press the return button on the keyboard nothing happens. How can I make the keyboard automatically close when the return key is pressed?