I cannot get textFieldShouldEndEditing to call. I have re created the links in interface builder and tried, but nothing seems to work. Any idea why this would not be called?
Edit
-(BOOL)textFieldShouldEndEditing:(UITextField *)textField
{
NSLog(@"Done editing...");
[textField resignFirstResponder];
return YES;
}
Done editing...show up in the logs? – JustSid Nov 23 '12 at 13:25