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.
当我点击 UIWebView 时,键盘会消失,这不是我想要的,我希望键盘保留在那里,有什么解决办法吗?
如果您希望在删除文本视图时键盘消失,请确保resignFirstResponder在删除/释放文本视图之前调用您的文本视图。
resignFirstResponder
如果您在文本视图可见时触摸 UIWebView,则焦点会从文本视图更改为 Web 视图并且键盘会关闭,因为操作系统认为从该点发生的任何触摸都是针对 Web 视图的。如果您触摸文本视图(也就是说,如果它仍然可见),焦点会变回文本视图并且键盘应该重新出现。
如果这些答案对您没有帮助,请澄清您的问题。