Objective C UI搜索栏

发布于 2024-10-21 11:08:26 字数 1894 浏览 1 评论 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;
        }


        - (BOOL)searchDisplayController:(UISearchDisplayController *)controller shouldReloadTableForSearchString:(NSString *)searchString {
            return NO;
        }

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

            // All functions goes here and bla bla bla

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

            //Remove tudo da table e recarrega

            [self.tableData removeAllObjects];
            [theTableView reloadData];

            [[[self searchDisplayController] searchResultsTableView] performSelectorOnMainThread:@selector(reloadData) withObject:nil waitUntilDone:NO];

        }

谢谢

Hey guys, i want to know why my SearchBar dont excludes the table view cell when i search again? It just add another cell above the first.

        - (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;
        }


        - (BOOL)searchDisplayController:(UISearchDisplayController *)controller shouldReloadTableForSearchString:(NSString *)searchString {
            return NO;
        }

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

            // All functions goes here and bla bla bla

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

            //Remove tudo da table e recarrega

            [self.tableData removeAllObjects];
            [theTableView reloadData];

            [[[self searchDisplayController] searchResultsTableView] performSelectorOnMainThread:@selector(reloadData) withObject:nil waitUntilDone:NO];

        }

Thanks

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

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

发布评论

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

评论(1

陌路终见情 2024-10-28 11:08:26

请使用一种技术,该技术在此处发布,其中包含 2 个表格视图和两个获取控制器。
这有点复杂,但你可以删除部分不需要的代码。

Please using a technic, which posted here with 2 tableviews and two fetch controllers.
it's a little bit complicated, but u can remove part of code, which u don.t need.

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