UIWebView 或 UIScrollView 用于 HTML,如 iPhone 应用程序中的视图
很抱歉问这个简单的问题,但我正在寻找向 iPhone 应用程序添加简单的类似 HTML 页面的设计模式。
我的直觉告诉我,制作一个带有全屏 WebView 的 View 显然是最简单的选择,但我认为 UIScrollView 更好。
最好的做法是什么?
我基本上想要一些文本、浮动一些图像、添加一些链接等。
我应该使用 WebView 还是 ScrollView?
谢谢你,
肯特
Sorry for this simple question but I am looking for the design pattern for adding a simple HTML like page to an iPhone app.
My intuition tells me that making a View with a full screen WebView inside is obviously the easiest option, but I think a UIScrollView is better.
What's the best practice?
I basically want to have some text, float some images, add a few links etc.
Should I use WebView or ScrollView?
Thank you,
Kent
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您想显示本地或远程网页的内容,您将需要一个
UIWebView
。如果您想以编程方式绘制所有内容,则需要使用UIScrollView
。我想你想要一个
UIWebView
。Well you're going to need a
UIWebView
if you want to display the contents of a local or remote web page. You would want to use aUIScrollView
if you wanted to draw all of the content programmatically.I think you want a
UIWebView
.