UIWebView 里面 UITableView 滚动?

发布于 2024-12-05 20:52:14 字数 227 浏览 0 评论 0原文

我在每个 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 技术交流群。

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

发布评论

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

评论(2

奢望 2024-12-12 20:52:14

重要提示:您不应嵌入
UIWebView 或 UITableView 对象
UIScrollView 对象。如果你这样做,
可能会导致意外的行为,因为
两个对象的触摸事件可以
混淆并错误处理。

http://developer.apple.com/ library/ios/#documentation/uikit/reference/UIScrollView_Class/Reference/UIScrollView.html

并且 UITableView 是 UIScrollView 的一部分;)

不能您以 Web 服务(json 或 xml)的形式获取数据并将 UILabel 添加到您的 tableview 中?

似乎更容易了?

Important: You should not embed
UIWebView or UITableView objects in
UIScrollView objects. If you do so,
unexpected behavior can result because
touch events for the two objects can
be mixed up and wrongly handled.

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 ?

棒棒糖 2024-12-12 20:52:14

您可以动态创建自定义单元格并将外部/动态数据附加到 UILabels。

You can create a custom Cell dynamically and attach external/dynamic data to the UILabels.

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