NSFetchedResultsController 用于地图注释
NSFetchedResultsController 的文档指出,它旨在用于“有效管理从 Core Data 获取请求返回的结果,以为 UITableView 对象提供数据”。
我也可以使用 NSFetchedResultsController 来管理地图注释集合吗?我不知道我会怎么做。有什么想法吗?
The documentation for the NSFetchedResultsController states that it is intended for use to 'efficiently manage the results returned from a Core Data fetch request to provide data for a UITableView object'.
Could I use an NSFetchedResultsController to manage a collection of map annotations as well? I am not sure how I would do this. Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我假设您的意思是您想要一些东西来管理将用于创建注释的核心数据对象的集合。
您应该使用标准集合:NSArray 或 NSSet(或 NSMutableArray 或 NSMutableSet)。
查看 NSManagedObjectContext 方法 executeFetchRequest:错误:。
I assume that you mean that you want something to manage a collection of Core Data objects that will be used to create annotations.
You should use a standard collection: NSArray or NSSet (or NSMutableArray or NSMutableSet).
Check out the NSManagedObjectContext method executeFetchRequest:error:.