在 Tableview 中创建搜索字段

发布于 2024-11-06 06:31:05 字数 76 浏览 1 评论 0原文

我正在创建一个带有表视图的应用程序,其中包含大量数据。因此,我有必要使用搜索字段。

有谁知道如何在表格视图中创建搜索选项?

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

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

发布评论

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

评论(1

单挑你×的.吻 2024-11-13 06:31:05

使用 UISearchBar 属性,使用声明它

searchBar = [[UISearchBar alloc] initWithFrame:CGRectMake(0,0,320,30)];

并将其作为子视图添加到 UIViewController 的视图中。

之后,在视图控制器中使用搜索栏委托方法:

-(void)searchBarTextDidBeginEditing:(UISearchBar *)searchBar {
-(void)searchBarTextDidEndEditing:(UISearchBar *)searchBar {
-(void)searchBar:(UISearchBar *)searchBar textDidChange:(NSString *)searchText {
-(void)searchBarCancelButtonClicked:(UISearchBar *)searchBar

查看教程掌握搜索栏及其代表的窍门!

编辑:此方法不是在表视图本身中使用搜索栏,而是在其上方。这意味着您必须将 tableView 作为 UIViewController 的子视图,并将 searchBar 作为同一 UIViewController 的子视图!

Use the UISearchBar property, declare it using

searchBar = [[UISearchBar alloc] initWithFrame:CGRectMake(0,0,320,30)];

and add it to your UIViewController's view as a subview.

After that, use the searchbar delegate methods in your view controller:

-(void)searchBarTextDidBeginEditing:(UISearchBar *)searchBar {
-(void)searchBarTextDidEndEditing:(UISearchBar *)searchBar {
-(void)searchBar:(UISearchBar *)searchBar textDidChange:(NSString *)searchText {
-(void)searchBarCancelButtonClicked:(UISearchBar *)searchBar

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!

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