带有可编辑 UIWebView 的自定义键盘?
是否可以使用具有可编辑 UIWebView 的自定义键盘进行富文本编辑(通过设置 inputView 属性,如 UITextView)?
它尝试子类化 UIWebView 并将 inputView 属性设置为读写,但这似乎没有任何区别。
请注意,这适用于可编辑的 WebView 内容(具有 HTML 属性 contentEditable="true"),而不是 HTML 输入字段。
Is is possible to use a custom keyboard with editable UIWebView for rich text editing (by setting inputView property, like on UITextView)?
It tried subclassing UIWebView and setting the inputView property to readwrite, but this doesn't seem to make any difference.
Note that this applies to editable WebView content (having HTML attribute contentEditable="true"), not HTML input fields.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
虽然有点晚了,但我花了 3 个小时寻找解决方法,我想我应该与你分享。
您可以使用使用 HTML5 和 CSS 实现的屏幕键盘,请点击以下链接:
基于 JS 的浏览器屏幕键盘,就像在手机和平板电脑上一样,
当 UIWebViewDelegate 调用时,您可以使用 stringByEvaluatingJavaScriptFromString 将代码注入到页面中webViewDidFinishLoad
希望对您有帮助
it is a little bit too late but as I spent 3 hours looking for a work around I thought that I should share it with you.
You can use on screen keyboard implemented using HTML5 and CSS follow this link:
JS Based on-screen keyboard for browser, like on cellphones and tablets
you can inject the code into the page using stringByEvaluatingJavaScriptFromString when the UIWebViewDelegate calls the webViewDidFinishLoad
I hope that helps you