Objective C UI搜索栏

发布于 2024-10-21 21:26:10 字数 1095 浏览 4 评论 0原文

我这里有一个小问题。为什么当我开始输入一些文本时我的搜索栏会进行搜索?这是代码:

     - (void)searchBarTextDidBeginEditing:(UISearchBar *)searchBar {
         [searchBar setShowsCancelButton:YES animated:YES];
         self.theTableView.allowsSelection = NO;
         self.theTableView.scrollEnabled = NO;
         [theTableView setRowHeight:110];
     }

     - (void)searchDisplayController:(UISearchDisplayController *)controller willShowSearchResultsTableView:(UITableView *)tableView {
         [tableView setRowHeight:[[self theTableView] rowHeight]];
         tableView.separatorStyle = UITableViewCellSeparatorStyleNone;
         [self.tableData removeAllObjects];
     }

     - (void)searchBarCancelButtonClicked:(UISearchBar *)searchBar {
         searchBar.text=@"";

         [searchBar setShowsCancelButton:NO animated:YES];
         [searchBar resignFirstResponder];
         self.theTableView.allowsSelection = YES;
         self.theTableView.scrollEnabled = YES;
     }

     - (void)searchBarSearchButtonClicked:(UISearchBar *)searchBar {

       // all the function to search

     }

I have a little issue here. Why does my search bar search when I start inputting some text? Here's the code:

     - (void)searchBarTextDidBeginEditing:(UISearchBar *)searchBar {
         [searchBar setShowsCancelButton:YES animated:YES];
         self.theTableView.allowsSelection = NO;
         self.theTableView.scrollEnabled = NO;
         [theTableView setRowHeight:110];
     }

     - (void)searchDisplayController:(UISearchDisplayController *)controller willShowSearchResultsTableView:(UITableView *)tableView {
         [tableView setRowHeight:[[self theTableView] rowHeight]];
         tableView.separatorStyle = UITableViewCellSeparatorStyleNone;
         [self.tableData removeAllObjects];
     }

     - (void)searchBarCancelButtonClicked:(UISearchBar *)searchBar {
         searchBar.text=@"";

         [searchBar setShowsCancelButton:NO animated:YES];
         [searchBar resignFirstResponder];
         self.theTableView.allowsSelection = YES;
         self.theTableView.scrollEnabled = YES;
     }

     - (void)searchBarSearchButtonClicked:(UISearchBar *)searchBar {

       // all the function to search

     }

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

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

发布评论

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

评论(1

﹏雨一样淡蓝的深情 2024-10-28 21:26:10

实现 searchDisplayController:shouldReloadTableForSearchString: 并返回 NO。这应该可以防止在搜索时自动重新加载数据。

Implement searchDisplayController:shouldReloadTableForSearchString: and return NO. This should prevent the autoreloading of the data while you search.

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