UISearchDisplayDelegate弃用解决方法

时间:2014-07-23 12:20:34

标签: ios objective-c uitableview uisearchbar

我注意到基本上UISearchDisplayDelegate中的所有内容都已弃用。就像我被教导实现搜索栏和搜索显示控制器的唯一方式一样,什么是好的解决方法?

示例代码为:

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
    if (tableView == self.searchDisplayController.searchResultsTableView) { // 'searchDisplayContoller' is now deprecated
        return [searchList count];
    } else {
        return [initialList count];
    }
}

1 个答案:

答案 0 :(得分:3)