UITablwview 滚动被挂起

发布于 2024-12-17 23:43:42 字数 75 浏览 0 评论 0原文

我的应用程序基本上是一个基于选项卡的应用程序。在第一个选项卡中,我有一个表格视图,数据是从网络服务器加载的。我的问题是表格视图滚动被挂起

My app is basically a tab based one .in the first tab i have a tableview the data is loaded from a web server .my problem is that the tableview scroll is getting hanged

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

_失温 2024-12-24 23:43:42

您正在使用“sendSynchronousRequest:”吗?不。使用异步网络。同步网络会阻塞主线程,并停止 UI 绘制,直到请求返回。

Are you using 'sendSynchronousRequest:'? Don't. Use asynchronous networking. Synchronous networking blocks the main thread, and halts UI drawing until the request returns.

星星的轨迹 2024-12-24 23:43:42

最好的选择是在视图出现时获取数据,然后在表视图中加载数据。

The best option is you fetch data when view gets appeared and after that you load data in tableview.

三生池水覆流年 2024-12-24 23:43:42

问题可能在于表格视图和单元格的高度动态分配。对这些进行检查。对于您的任何问题,请确保添加一些代码片段,以便更好地理解问题。

Probably the issue is with dynamic allocation of height for tableview and also for the cell. Do a check on these. For any of your questions, make sure that you are adding some snippets of code which gives better understanding of the question.

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