选择DOMRange修改/添加现有WebView中的内容
我的要求是这样的 我的视图中有一个 WebView 控件 我将从其他来源获取数据并需要在 WebView 中显示,它可以是图像或任何其他标记数据,
据我所知以编程方式插入内容,我应该使用下面的方法,
[pWebView replaceSelectionWithMarkupString:@"<html><body><p>Hi there </p></br></body></html>”];
亲切的问候
罗汉
My requirement is like that,
I have a WebView control in my view
i will be getting data from some other source and need to display in the WebView, it could be an image, or any other Markup data,
As i know to insert the content programmatically, i should use the method below,
[pWebView replaceSelectionWithMarkupString:@"<html><body><p>Hi there </p></br></body></html>”];
Kind Regards
Rohan
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
WebView动态插入/修改内容
解决了上述答案中建议的方式
WebView Insert / Modify Content dynamically
Solved the way suggested in above answer