Dismiss keyboard on IPAD

2020-02-10 05:58发布

The ResignFirstResponder for an UITextField on the Iphone semms to not working for the Ipad. How can I dismiss my keyboard programmatically?

Thanks,

3条回答
够拽才男人
2楼-- · 2020-02-10 05:59

Now we can

- (BOOL)disablesAutomaticKeyboardDismissal {
    return NO;
}
查看更多
Bombasti
3楼-- · 2020-02-10 06:04

UPDATE This answer is no longer accurate. See the correct answer.

If your UITextField is in a modal page sheet view (UIModalPresentationFormSheet), then there is (currently) no way to force the device to dismiss the keyboard this devforums post from an apple engineer.

查看更多
劫难
4楼-- · 2020-02-10 06:16

In iOS 4.3, Apple introduced the above mentioned method, disablesAutomaticKeyboardDismissal. It returns YES for UIModalPresentationFormSheet, preventing the keyboard from dismissing.

Overriding this method works, but if you present your view controller inside a UINavigationController, you must subclass UINavigationController and override the method there.

I've confirmed that this does indeed work on iOS 6. Just make sure to pay attention to the UINavigationController clause.

查看更多
登录 后发表回答