NSFetchedResultsController 用于地图注释

发布于 2024-08-17 19:27:00 字数 166 浏览 4 评论 0原文

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 技术交流群。

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

发布评论

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

评论(1

椵侞 2024-08-24 19:27:00

我假设您的意思是您想要一些东西来管理将用于创建注释的核心数据对象的集合。

您应该使用标准集合: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:.

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