NSOperationQueue 阻塞表视图刷新

发布于 2024-12-13 10:40:13 字数 257 浏览 0 评论 0原文

我一直在使用 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 技术交流群。

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

发布评论

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

评论(1

喜爱皱眉﹌ 2024-12-20 10:40:13

很高兴看到一些代码,但可能的原因之一可能是您正在从后台队列运行 reloadData。

试试这个:

dispatch_async(dispatch_get_main_queue(), ^{
        [self.tableView 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:

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