在通常情况下,我们使用UITextField空间来完成输入,点击编辑区域,键盘自动出现,点击Done按钮,键盘自动消失。如果用代码来控制,则是使用becomeFirstResponder和resignFirstResponder来控制键盘的出现/隐藏。
不过如果你在UIModalPresentationFormSheet这种风格的弹出界面时,resignFirstResponder是无法自动隐藏键盘的。
笔者在遇到这个问题时也为此困惑了不少时候,查阅了不少资料,最后发现之所以在UIModalPresentationFormSheet下的视图无法用resignFirstResponder这个API,是因为在进入到此模式的后,系统将disablesAutomaticKeyboardDismissal方法返回值置为了YES。
官方文档上说“The default implementation of this method returns YES when the modal presentation style of the view controller is set to UIModalPresentationFormSheet and returns NO for other presentation styles.”翻译成中文意思是“这个方法在UIModalPresentationFormSheet时默认值是YES,在其他情况下默认值是NO”。
如果应用一定需要隐藏键盘,解决方法有两个:
1. 调用Apple的Private API
@try
{
Class UIKeyboardImpl = NSClassFromString(@"UIKeyboardImpl");
id activeInstance = [UIKeyboardImpl performSelector:@selector(activeInstance)];
[activeInstance performSelector:@selector(dismissKeyboard)];
}
@catch (NSException *exception)
{
NSLog(@"Exception : %@", exception);
}
这方法实现简单,只是由于调用了Apple的Private API,可以工作,但无法通过APP Store的审核
2. 重新实现disablesAutomaticKeyboardDismissal
如果直接使用ViewController则可以在实现文件中重新实现这个API,将返回值改为NO后,即可正常使用resignFirstResponsder方法隐藏键盘
- (BOOL)disablesAutomaticKeyboardDismissal
{
return NO;
}// disablesAutomaticKeyboardDismissal
但很多时候我们是把ViewController放在UINavigationController中的,这种情况下直接在ViewController里面实现disablesAutomaticKeyboardDismissal依然失效,而应该在UINavigationController中实现这个API。
#import <UIKit/UIKit.h>
@interface UINavigationController (UINavigationController_KeyboardDismiss)
- (BOOL)disablesAutomaticKeyboardDismissal;
@end
#import "UINavigationController_UINavigationController_KeyboardDismiss.h"
@implementation UINavigationController (UINavigationController_KeyboardDismiss)
- (BOOL)disablesAutomaticKeyboardDismissal
{
return NO;
}// disablesAutomaticKeyboardDismissal
@end
经过UINavigationController Category对disablesAutomaticKeyboardDismissal方法的重写后,即可解决resignFirstResponder方法失效的问题。
thx:
http://blog.csdn.net/sakulafly/article/details/9081107
http://stackoverflow.com/questions/3372333/ipad-keyboard-will-not-dismiss-if-modal-viewcontroller-presentation-style-is-uim/3386768#3386768
https://developer.apple.com/library/ios/documentation/UIKit/Reference/UIViewController_Class/index.html
相关推荐
MZFormSheetPresentationController提供了对本机iOS UIModalPresentationFormSheet的替代,增加了对iPhone的支持以及设置控制器大小和感觉表单的其他机会。 MZFormSheetPresentationController还具有许多预定义的...
- 在iPad上,模态视图可以呈现为`UIModalPresentationFormSheet`,在Split View Controller中,模态视图会保持全屏,但不隐藏主视图。 8. **手势关闭模态视图** - 自iOS 8以来,可以通过在模态视图的背景上添加...
- `UIModalPresentationFormSheet`:这种样式下的模态视图大小固定为540×620点,无论设备的屏幕方向如何,尺寸都不会改变。 - `UIModalPresentationCurrentContext`:模态视图将以与父视图控制器相同的上下文环境...
模态视图专用属性包括UIModalPresentationFullScreen、UIModalPresentationPageSheet、UIModalPresentationFormSheet、UIModalPresentationCurrentContext,分别对应不同的展示样式,如全屏、固定宽度的页面、表单...
模态视图控制器(Modal View Controller)是一种设计模式,它用于在当前界面之上显示一个新的、临时的用户界面,通常用于收集用户输入或者展示一些重要的信息。在这个特定的示例中,我们将会探讨如何在一个包含...
在iOS开发中,我们使用UIAlertController,通过设置其modalPresentationStyle为UIModalPresentationFormSheet或UIModalPresentationOverCurrentContext来实现非模态效果。 标签“源码”提示我们将深入到代码层面来...
- `UIModalPresentationFormSheet`:在iPad上,显示为一个小窗口,iPhone上与FullScreen相同。 - `UIModalPresentationCurrentContext`:根据当前的显示环境调整模态样式。 这些方法和概念构成了iOS应用中...
这是一款不错的弹出视图特效源码,该效果特效源码很简单,而且有很容易上手,而且还可以在弹出视图上添加各种控件功能效果,另外还可用于取代原生的UIModalPresentationFormSheet效果等,值得大家的借鉴与学习。
来源:github/... 实现各种非常不错的弹出视图效果,以及在弹出视图上添加各种控件,可用于取代原生的UIModalPresentationFormSheet。 [优才 · Code4App]编译测试,适用环境:Xcode 4.5, iOS 5.0 以上。