First you need to add the delegate to your viewController or class. So in your header file:
From this:
@interface FirstViewController : UIViewController {
To this:
@interface FirstViewController : UIViewController <UITextFieldDelegate> {
Than, in your .m file, create this method:
Code:
- (BOOL)textFieldShouldReturnUITextField *)textField
{
[self myMethodToRun];
return YES;
}
That's just from the top of my head, but I think it'll work