在 iPhone 应用程序中显示 HTML
如何在 iPhone 的 textview 中打开 url?
是否可以显示带有链接
、照片
和所有html实体
的数据???
How to open url in textview iphone??
Is it possible to show data with links
,photos
and all html entities
???
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 UIWebView 从文件加载静态包含; html、照片、css、javascript。
然后只需将“index.html”作为正常的 HTML 标准添加到您的项目中即可。
You can use UIWebView to load a static contain from files; html, photo, css, javascript.
then just add "index.html" as normal HTML standard to your project.
这是
UITextView
控件不可能实现的。使用UIWebView
或制作您自己的自定义控件。It's not possible with
UITextView
control. UseUIWebView
or make your own custom control.