UIWebView 里面 UITableView 滚动?
我在每个 UITableView
单元格内都有 UIWebView
。
我的 UIWebView 很简单,它只包含两行,一行是粗体,一行是常规。
一切工作正常,除了 UIWebView
仅在滚动停止时加载 HTML 字符串,而在滚动 UITableView
时不会加载。
我该如何修复它?
I have UIWebView
inside each UITableView
cell.
My UIWebView
is simple, it contains only two lines, one is bold, and one is regular.
Everything is working fine, except UIWebView
is only loading HTML string when scrolling is stopped, it isn't loading while scrolling UITableView
.
How can I fix it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
http://developer.apple.com/ library/ios/#documentation/uikit/reference/UIScrollView_Class/Reference/UIScrollView.html
并且 UITableView 是 UIScrollView 的一部分;)
不能您以 Web 服务(json 或 xml)的形式获取数据并将 UILabel 添加到您的 tableview 中?
似乎更容易了?
http://developer.apple.com/library/ios/#documentation/uikit/reference/UIScrollView_Class/Reference/UIScrollView.html
And a UITableView is part of a UIScrollView ;)
Can't you get data as a webservice (json or xml) and add UILabel into your tableview ?
Seems to be easier ?
您可以动态创建自定义单元格并将外部/动态数据附加到 UILabels。
You can create a custom Cell dynamically and attach external/dynamic data to the UILabels.