即使 shouldReloadTableForSearchString 方法返回 NO,为什么我的 UISearchDisplayController 显示“无结果”?它不应该什么都不做并保持黑色吗?我怎样才能防止它这样做?
#import "RootViewController.h"
@implementation RootViewController
#pragma mark Table view methods
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
return 1;
}
// Customize the number of rows in the table view.
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
if (tableView == self.searchDisplayController.searchResultsTableView) {
return 0;
}
return 10;
}
// Customize the appearance of table view cells.
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
}
// Configure the cell.
cell.textLabel.text = [NSString stringWithFormat:@"row %d", indexPath.row];
return cell;
}
#pragma mark SearchController stuff
- (BOOL)searchDisplayController:(UISearchDisplayController *)controller shouldReloadTableForSearchString:(NSString *)searchString {
return NO;
}
- (void)dealloc {
[super dealloc];
}
@end
最佳答案
不,tableViews(包括由 searchTableView
创建的 UISearchDisplayController
)在显示时会自动加载数据。 shouldReloadTableForSearchString:
方法将阻止仅在搜索框中键入字符时重新加载表。
有关如何处理此问题的建议,请参阅我对 UISearchDisplayContoller – can't prevent table reload on typing in search bar 的回答。
关于iphone - UISearchDisplayController "shouldReloadTableForSearchString return NO"重新加载表,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/2737815/