UITablwview 滚动被挂起
我的应用程序基本上是一个基于选项卡的应用程序。在第一个选项卡中,我有一个表格视图,数据是从网络服务器加载的。我的问题是表格视图滚动被挂起
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您正在使用“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.
最好的选择是在视图出现时获取数据,然后在表视图中加载数据。
The best option is you fetch data when view gets appeared and after that you load data in tableview.
问题可能在于表格视图和单元格的高度动态分配。对这些进行检查。对于您的任何问题,请确保添加一些代码片段,以便更好地理解问题。
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.