我嘗試隱藏iPad上的鍵盤,但我不知道爲什麼resignFirstResponder不起作用。 但popToRoot工作良好。resignFirstResponder不工作?
- (BOOL)textFieldShouldReturn:(UITextField *)textField
{
NSString *desc = [NSString stringWithFormat:@"%@",[descTF text]];
[textField resignFirstResponder];
[self.navigationController popToRootViewControllerAnimated:YES];
return YES;
}
所以你能指導我該怎麼做?
http://stackoverflow.com/questions/3124828/resignfirstresponder-not-hiding-keyboard-on-textfieldshouldreturn –
我試圖把 - (BOOL)disablesAutomaticKeyboardDismissal { 返回NO; } 在我的代碼下 - (BOOL)textFieldShouldReturn:(UITextField *)textField {...}但鍵盤仍然沒有隱藏。 – crazyoxygen
在我發佈的鏈接中,問題可能是Apple的一個錯誤。 –