我可以禁止键盘在 UIWebView 中显示吗?
当在 UIWebView 中选择网页元素时是否可以禁用键盘显示?
Is it possible to disable the keyboard from showing when a webpage element is selected inside a UIWebView?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
注册键盘通知:
然后您可以通过将以下代码放入keyboardWillShow中来阻止它显示:
不确定这是否可以正常工作100%。如果键盘开始动画然后再次隐藏自身,您可以使用
如果键盘在显示时不喜欢被放弃,那么您可以尝试将虚拟 textField 的 inputView 属性更改为某个虚拟 UIView 。
希望这能让你有所收获!
Register for a keyboard notification:
And then you can stop it from showing by placing the following code in keyboardWillShow :
Not sure 100% if this will work without flaws. If the keyboard starts to animate then hides itself again, you could use
If the keyboard doesn't like being resigned while it's showing then you could try changing the inputView property of the dummy textField to some dummy UIView instead.
Hopefully this should get you somewhere!