Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我刚刚在 xCode 4.4 上创建了一个新的单视图应用程序。它是用 .storyboards 文件(而不是 xib)创建的。然后我添加了一个 UIWebView。现在我无法通过代码行显示键盘:
[self.window MakeKeyAndVisible];
window因为ViewController.m 上没有任何内容。如何在这个新的 xCode 项目模板上强制在 UIWebView 上显示键盘?
window
非常感谢您的帮助!
您始终可以从 UIApplicationDelegate 对象获取 window 属性。由于这是一个单例对象,您可以使用:
[[UIApplication sharedApplication] delegate];
在那里您可以到达 window 属性。