第一步:遵守協議 (UITextFieldDelegate)
@interface AppDelegate : UIResponder <UIApplicationDelegate,UITextFieldDelegate>
第二步:設置代理
textField.delegate = self;
第三步:實現方法(textFieldShouldReturn)
- (BOOL)textFieldShouldReturn:(UITextField *)textField{ //釋放第一響應者,回收鍵盤 [textField resignFirstResponder]; return YES; }