在 Tableview 中创建搜索字段
我正在创建一个带有表视图的应用程序,其中包含大量数据。因此,我有必要使用搜索字段。
有谁知道如何在表格视图中创建搜索选项?
I am creating an application with a table view, which has a large amount of data in it. Because of this, it is necessary for me to use a search field.
Does anyone have any idea how to create a search-option in a tableview?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 UISearchBar 属性,使用声明它
并将其作为子视图添加到 UIViewController 的视图中。
之后,在视图控制器中使用搜索栏委托方法:
查看此教程掌握搜索栏及其代表的窍门!
编辑:此方法不是在表视图本身中使用搜索栏,而是在其上方。这意味着您必须将 tableView 作为 UIViewController 的子视图,并将 searchBar 作为同一 UIViewController 的子视图!
Use the UISearchBar property, declare it using
and add it to your UIViewController's view as a subview.
After that, use the searchbar delegate methods in your view controller:
Check out this tutorial to get a hang of the search bar and its delegates!
EDIT: This method isn't about using a searchbar in tableview itself, but above it. That means you have to put tableView as a subview of a UIViewController, and the searchBar as a subview of the same UIViewController as well!