包含核心数据的搜索栏

发布于 2024-11-02 17:22:12 字数 87 浏览 0 评论 0原文

我在表格视图中添加了搜索栏,并且在表格视图中从核心数据中获得了一些城市。我阅读了一些示例,但不明白如何使用核心数据实现搜索栏。请给我一些示例或教程链接。提前致谢

I have added search bar in my tableview and I am having number of cities in table view from core data.I read some examples but didn't understand how to implement search bar with core data.Please give me some example or tutorial link..Thanks in advance

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

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

发布评论

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

评论(1

海拔太高太耀眼 2024-11-09 17:22:12

首先使用 UISearchBarDelegate 方法之一,例如 searchBar:textDidChange:

我不知道你的搜索应该如何进行。这是一个如何查询应包含 searchText 的文本的示例。

- (void)searchBar:(UISearchBar *)searchBar textDidChange:(NSString *)searchText
{
    NSPredicate *predicate = [NSPredicate predicateWithFormat:@"(%@ contains[c] %@)", fieldName, searchText];
    [fetchRequest setPredicate:predicate];
}

First of all make use of one of the UISearchBarDelegate methods like searchBar:textDidChange:.

I don't know how your search should be performed. This an example how to query for a text which should contain the searchText.

- (void)searchBar:(UISearchBar *)searchBar textDidChange:(NSString *)searchText
{
    NSPredicate *predicate = [NSPredicate predicateWithFormat:@"(%@ contains[c] %@)", fieldName, searchText];
    [fetchRequest setPredicate:predicate];
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文