Xcode 4.3 add action for keyboard return key

cocoa-touch, ios5, iphone, objective-c

Solution

well it's simple just add :

- (BOOL)textFieldShouldReturn:(UITextField *)textField{
    [self yourButtonName:nil];
}

Problem

How to make the return key on the keyboard to perform an action of (IBAction).

Original source