中的这段代码appDelegate
使我的应用程序表现得很奇怪
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
self.window.windowLevel = UIWindowLevelStatusBar + 1;
return YES;
}
从功能中隐藏键盘时,[myTextView resignFirstResponder]
我的键盘消失在视图下,而不是应有的向下滑动。
改变这种情况的最佳方法是什么?为什么会UIWindowLevelStatusBar + 1
弄乱所有应用程序结构?
编辑:
我想要做的是在statusBar
. 设置错误UIWindowLevelStatusBar + 1
的appDelegate
方式来做到这一点?