iphone - 在不禁用用户交互的情况下阻止 UIWebView 输入显示 UIKeyboard
<p><p>我有一个加载和外部产品配置 Web 服务 UI 的 UIWebView,它基本上是一堆相关的下拉列表。</p>
<p>问题在于下拉菜单基本上是增强的文本输入,因此当用户点击它们以显示选项时,UIKeyboard 会在他们做出选择后不断弹出并拥有。它不是一个流动的过程。是否有抑制 html 输入触发 UIKeyboard 的方法?</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>然后试试这个:</p>
<pre><code>...
[ addObserver:self selector:@selector(removeKeyBoard:) name:UIKeyboardDidShowNotification object:nil];
...
- (void)removeKeyBoard:(NSNotification *)notify {
// web is your UIWebView
;
}
</code></pre>
<p>记得删除通知,如果仅针对您的 WebView 对象,则可以对其进行过滤。</p></p>
<p style="font-size: 20px;">关于iphone - 在不禁用用户交互的情况下阻止 UIWebView 输入显示 UIKeyboard,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/10059178/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/10059178/
</a>
</p>
页:
[1]