NSOperationQueue 阻塞表视图刷新
我一直在使用 NSOperationQueue 从后台服务器下载一些数据。 我有多个数据要下载。因此,每个数据下载的队列中都会添加多个操作 有 UITableview,一旦收到单个数据,我需要刷新。 我使用 KVO 方法来跟踪每个操作完成的“isFinished”键。 但是,当我刷新表视图时,会调用表视图的所有代理,但表不会刷新。 我还从我的控制台日志中看到,即使表视图没有完全刷新,我也会看到来自工作线程的日志(用于后台数据下载)。 这就是为什么我的表没有完全刷新? 有什么办法可以解决这个问题?
I have been using NSOperationQueue to download some data from server on background.
i have multiple data to be downloaded .So multiple operation is added to queue for each data download
there UITableview which i need to refresh once single data is received.
I have used KVO approache to track "isFinished" key for each operation finish.
But when i refresh tableview all delgates for tableview is called but table isnt refreshed.
i also see from my console logs that even when tableview isnt refreshed completely,i see logs from worker thread (is used for background download of data).
So thats why my table isnt refresh completely?
What could be work around for it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
很高兴看到一些代码,但可能的原因之一可能是您正在从后台队列运行 reloadData。
试试这个:
Would be nice to see some code, but one of the possible reasons could be that you are running reloadData from a background queue.
Try this: