Dismiss keyboard on IPAD

后端 未结 3 1827
既然无缘
既然无缘 2020-12-16 20:59

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

Thanks,

相关标签:
3条回答
  • 2020-12-16 21:20

    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.

    0 讨论(0)
  • 2020-12-16 21:23

    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.

    0 讨论(0)
  • Now we can

    - (BOOL)disablesAutomaticKeyboardDismissal {
        return NO;
    }
    
    0 讨论(0)
提交回复
热议问题