NSFetchedResultController 和 UISearchBar 实现

发布于 2024-08-19 21:38:22 字数 521 浏览 6 评论 0原文

我正在使用 iPhone 的核心数据创建一个简单的基于导航的应用程序,并尝试实现一些搜索。 该应用程序基于苹果公司的“基于导航的应用程序”模板。 NSFetchedResultsController 获取所有对象,它们将显示在表视图中。我还保留了“加号”按钮来添加新对象。 好吧,我已经实现了 UISearchBar 和 UISearchDisplayController,两者都在同一个中。搜索使用相同的 NSFetchedResultsController 来过滤对象。 NSPredicate 将在 UISearchDisplayController Delegate 方法中设置,但似乎尚未设置谓词,因为 fetchedResultsController 不会过滤任何内容。这是我的第一个问题。 现在,如果我按搜索栏的取消按钮并想通过按加号按钮插入新对象,则不会。不会插入任何对象,应用程序不会崩溃,只是什么也没发生。

我是否必须在一个视图中使用两个不同的 NSFetchedResultsController ?如果是,这并不能解决为什么未设置 NSPredicate 的问题。 我已经感谢你的帮助了。

I'm creating a simple Navigation-based app using core data for my iPhone and I'm trying to implement a little search.
The app is baed on the "Navigation-based application"-template from Apple. The NSFetchedResultsController gets all the objects and they will be displayed in the table view. I've also have left the Plus button to add new objects.
Well, I've implemented a UISearchBar and a UISearchDisplayController, both in the same. The search uses the same NSFetchedResultsController to filter the objects. An NSPredicate will be set in the UISearchDisplayController Delegate methods, but it seems that the predicate hasn't been set, because the fetchedResultsController doesn't filter anything. That's my first problem.
Now, if I press the cancel button of the search bar and want to insert a new object by pressing the plus button, it doesn't go. No objects will be inserted, an the app doesn't crash, it just happens nothing.

Do I have to use two different NSFetchedResultsController in one single view? If yes, this doesn't solve the problem why the NSPredicate isn't set.
I already thank you for your help.

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

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

发布评论

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

评论(1

夜声 2024-08-26 21:38:22

如果修改提取请求(例如通过更改谓词),则需要创建新的提取结果控制器。
或者,您可以将获取的对象作为数组访问(使用获取结果控制器的 fetchedObjects 属性)并根据搜索条件过滤该数组。这样做的额外好处是与 Apple 的 用于表搜索的示例代码(因为它们使用数组来支持表视图)。

If you modify your fetch request (such as by changing the predicate), you need to create a new fetched results controller.
Alternatively, you could access your fetched objects as an array (using the fetchedObjects property of the fetched results controller) and filter that array based on the search criteria. This has the added benefit of aligning more with Apple's sample code for table search (since they use an array to back the table view).

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