带有可编辑 UIWebView 的自定义键盘?

发布于 2024-12-29 10:05:38 字数 215 浏览 1 评论 0原文

是否可以使用具有可编辑 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

烟花易冷人易散 2025-01-05 10:05:38

虽然有点晚了,但我花了 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文