iPhone 在解析 XML/核心数据后台线程延迟后更新详细信息视图

发布于 2024-11-18 11:52:22 字数 243 浏览 4 评论 0原文

我遇到了一个后台线程延迟问题,即在后台线程上运行的 xml 解析器在detailView加载/显示很久之后才完成数据解析。

核心数据最初存储 tableListView 的简短详细信息。当我选择索引 x 处的 listItem 对象时,detailView 需要更多数据来显示。它需要解析更多的XML,将其添加到核心数据并将其显示在详细视图中。

如何让详细视图等待数据可用或当数据在 CoreData 中可用时重新加载详细视图?即什么技术?

I have a back-thread delay problem where an xml parser operating on a backthread completes parsing the data long after the detailView loads/displays.

Core data is storing initially brief details for a tableListView. When I'm selecting a listItem object at index x, the detailView requires more data for display. It needs to parse more XML, add it to core data and display it in the detail view.

How can I either get the detailView to wait for the data to be available OR reload the detailView when the data becomes available in CoreData? ie What technique?

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

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

发布评论

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

评论(1

风吹雪碎 2024-11-25 11:52:22

当您将前台托管对象上下文与接受解析数据的后台上下文合并后,NSFetchedResultsController 会自动执行此操作。

NSFetchedResultsController will do it automatically after you merge the foreground managed object context with the background context that accepts the parsed data.

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