This line of code is ran when my email textField editingDidEnd. The NSLog runs so I know the function is ran but the keyboard still does not go away. Ive connected the textBox as a delegate. Ive made sure the connections in storyboard are there. It still wont change. Help. Thanks.
- (IBAction)emailDone2:(id)sender
{
[_email resignFirstResponder];
NSLog(@"emailDone2");
}
EDIT ** I changed the code as instructed and this still does nothing. Nothing has changed.
- (IBAction)emailDone2:(id)sender
{
[self.view endEditing:TRUE];
}