当我使用 UISearchController 更新我的表格 View 时,我遇到了这种奇怪的副作用(如果我从表格 View 中选择某些内容而不搜索该错误不会自行显现)。但是当我搜索时,选择一个单元格,然后 popViewControllerAnimated: 由于某种原因 NavigationBar 不再隐藏。我想认为这是 iOS 中的错误,而不是特定于我的代码。但我想我会看看是否有人能在我的代码中发现一个错误,或者对我可能做错的事情有任何想法。我已将 [self.navigationController setNavigationBarHidden:YES]; 添加到 rootView 的 viewWillAppear 中,但该栏直到动画结束了。
我的 TableView/UISearchController 代码:
@interface LBSelectUniversityView()<UISearchResultsUpdating, UISearchBarDelegate>
@property (strong, nonatomic) UISearchController *searchController;
@end
@implementation LBSelectUniversityView {
NSArray *schoolNames;
NSArray *searchResults;
}
- (void)viewDidLoad {
[super viewDidLoad];
schoolNames = [[LBUtilities sharedInstance] schoolNames];
searchResults = schoolNames;
self.searchController = [[UISearchController alloc] initWithSearchResultsController:nil];
self.searchController.searchResultsUpdater = self;
self.searchController.dimsBackgroundDuringPresentation = NO;
self.searchController.searchBar.delegate = self;
self.tableView.tableHeaderView = self.searchController.searchBar;
self.definesPresentationContext = YES;
[self.searchController.searchBar sizeToFit];
}
#pragma mark - Table view data source
- (NSInteger)numberOfSectionsInTableViewUITableView *)tableView {
return 1;
}
- (NSInteger)tableViewUITableView *)tableView numberOfRowsInSectionNSInteger)section {
return searchResults.count;
}
- (UITableViewCell *)tableViewUITableView *)tableView
cellForRowAtIndexPathNSIndexPath *)indexPath {
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault
reuseIdentifier:CellIdentifier];
}
...
return cell;
}
- (void)filterContentForSearchTextNSString*)searchText{
if ([searchText isEqualToString""]) return;
NSPredicate *resultPredicate = [NSPredicate
predicateWithFormat"SELF contains[cd] %@",
searchText];
searchResults = [schoolNames filteredArrayUsingPredicate:resultPredicate];
}
- (void)updateSearchResultsForSearchControllerUISearchController *)searchController{
NSString *searchString = searchController.searchBar.text;
[self filterContentForSearchText:searchString];
[self.tableView reloadData];
}
- (void)tableViewUITableView *)tableView didSelectRowAtIndexPathNSIndexPath *)indexPath {
...
[self.navigationController popViewControllerAnimated:YES];
}
@end
Best Answer-推荐答案 strong>
如果您设置 searchController.hidesNavigationBarDuringPresentation = NO ,问题会消失吗?
可能正在发生以下情况:
- 当您开始搜索时,
searchController.active 设置为 YES 。因此 searchController 调用 [... setNavigationBarHidden:YES] 因为 UISearchController.hidesNavigationBarDuringPresentation = YES 默认情况下。
popViewControllerAnimated: 被调用。
searchController.active 设置为 NO ,所以 searchController 调用 [... setNavigationBarHidden:NO] .这会导致显示导航栏。
关于iOS 添加 UISearchController 正在取消隐藏 NavigationBar,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/32803892/
|