包含核心数据的搜索栏
我在表格视图中添加了搜索栏,并且在表格视图中从核心数据中获得了一些城市。我阅读了一些示例,但不明白如何使用核心数据实现搜索栏。请给我一些示例或教程链接。提前致谢
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先使用 UISearchBarDelegate 方法之一,例如
searchBar:textDidChange:
。我不知道你的搜索应该如何进行。这是一个如何查询应包含 searchText 的文本的示例。
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.