我根據蘋果的文檔進行程序設計。但是在解除鍵盤的時候出了問題:
- (BOOL) textFieldShouldReturn: (UITextField *) theTextField
{
if(theTextField == self.textField)
{
[theTextField resignFirstResponder];
}
return YES;
}
請指教。謝謝
可使用下面的代碼關閉鍵盤
[[[UIApplication sharedApplication] keyWindow] endEditing:YES];