次の画像のように、またはプログラムでUITextFiled
Delegateを接続する必要があります。nib

また
viewDidLoad
他の方法は、メソッドまたはメソッドのようにプログラム的ですviewWillAppear
:
Yourtxtfild.delegate = self;
AnotherView をジャンプするためのEDIT
このテキストファイル化されたデリゲート メソッドを使用します。
- (void)textFieldDidEndEditing:(UITextField *)textField
{
[textField resignFirstResponder];
//you can set your textfiled string in to globle Variable and use it in another viewController
YourViewCntroller *objViewController = [[YourViewCntroller alloc] initWithNibName:@"YourViewCntrollernib" bundle:nil];
[self.navigationController pushViewController:objViewController animated:YES];
}