如何使用带有objectiveC的uisearchcontroller在ios 9中为tableview添加搜索选项

时间:2016-01-04 06:13:25

标签: ios objective-c uisearchcontroller

我有一个成功显示数据的tableView,现在我想要的是为它提供搜索功能。 UISearchDisplayController在iOS 9中已弃用,我是iOS新手。所以请告诉我这样做的方法。 如果有人可以一步一步地提供代码,我很感激它,它也会帮助其他人。这是我的tableView代码。

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
    return 1;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    return [airportList count];
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{



    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"ci"];

    Details *newDetails = [airportList objectAtIndex:indexPath.row];

    cell.textLabel.text = newDetails.airport;

    return cell;

}

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{

    Details *newDetails = [airportList objectAtIndex:indexPath.row];
    NSString *selectedText = newDetails.airport;
    [[NSUserDefaults standardUserDefaults] setObject:selectedText forKey:@"st"];
    [[NSUserDefaults standardUserDefaults] synchronize];

    [self dismissViewControllerAnimated:YES completion:nil];
}

2 个答案:

答案 0 :(得分:21)

您可以在iOS 9中使用UISearchController

首先声明UISearchController

的属性
@property (strong, nonatomic) UISearchController *searchController;

然后,在viewDidLoad

self.searchController = [[UISearchController alloc] initWithSearchResultsController:nil];
self.searchController.searchResultsUpdater = self;
self.searchController.dimsBackgroundDuringPresentation = NO;
self.searchController.searchBar.delegate = self;

创建UISearchController时,我们不需要单独的搜索结果控制器,因为我们将使用UITableViewController本身。 同样,我们还将使用UITableViewController通过实施UISearchResultsUpdating协议来更新搜索结果。 我们不希望调暗基础内容,因为我们希望在用户键入搜索栏时显示过滤结果。 UISearchController负责为我们创建搜索栏。 当用户更改搜索范围时,UITableViewController也将充当搜索栏代理。

接下来,将searchBar添加到tableview标题

self.tableView.tableHeaderView = self.searchController.searchBar;

由于搜索视图在活动时覆盖了表视图,我们使UITableViewController定义了表示上下文:

self.definesPresentationContext = YES;

我们需要实施UISearchResultsUpdating委托,以便在搜索文本发生变化时生成新的过滤结果:

- (void)updateSearchResultsForSearchController:(UISearchController *)searchController
{
  NSString *searchString = searchController.searchBar.text;
  [self searchForText:searchString scope:searchController.searchBar.selectedScopeButtonIndex];
  [self.tableView reloadData];
}

答案 1 :(得分:1)

您可以使用Apple示例指南了解:Table Search with UISearchController

“Table Search with UISearchController”是一个iOS示例应用程序,演示了如何使用UISearchController。搜索控制器管理搜索栏的显示(与结果视图控制器的内容一致)。