This is probably a dumb question, but I can\'t find the answer in the docs. Did the \"Done\" button on the pop-up keyboard always cause the keyboard to disappear? I see a lo
In Xcode 5.1
Enable Done Button
Hide Keyboard when Done is pressed
Add this method to your ViewController
-(BOOL)textFieldShouldReturn:(UITextField *)textField
{
[textField resignFirstResponder];
return YES;
}