我注意到基本上UISearchDisplayDelegate中的所有内容都已弃用。就像我被教导实现搜索栏和搜索显示控制器的唯一方式一样,什么是好的解决方法?
示例代码为:
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
if (tableView == self.searchDisplayController.searchResultsTableView) { // 'searchDisplayContoller' is now deprecated
return [searchList count];
} else {
return [initialList count];
}
}
答案 0 :(得分:3)
UISearchController
应该替换它......
Apple关于替换的说明,滚动到UIKit Framework部分: https://developer.apple.com/library/prerelease/ios/releasenotes/General/WhatsNewIniOS/Articles/iOS8.html