iPhone 在解析 XML/核心数据后台线程延迟后更新详细信息视图
我遇到了一个后台线程延迟问题,即在后台线程上运行的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当您将前台托管对象上下文与接受解析数据的后台上下文合并后,NSFetchedResultsController 会自动执行此操作。
NSFetchedResultsController will do it automatically after you merge the foreground managed object context with the background context that accepts the parsed data.