使用searchDisplayController时如何更改“无结果”标签?
此致
答案 0 :(得分:14)
我从没有空结果集成功删除了标签。
如果因为从服务器获取结果而没有结果,请将数据源重置为单行,并让它显示空白的表格视图单元格。
此外,使用逻辑重新选择“虚拟”单元格:
- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath
{
NSString *listItem = [self.filteredListContent objectAtIndex:indexPath.row];
if ([listItem isEqualToString:@""]) {
cell.selectionStyle = UITableViewCellSelectionStyleNone;
}
}
我还发现有必要在willSelect
委托方法中添加“虚拟”单元格逻辑:
- (NSIndexPath *)tableView:(UITableView *)tableView willSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
NSString *listItem = [self.filteredListContent objectAtIndex:indexPath.row];
if ([listItem isEqualToString:@""]) {
return nil;
}
return indexPath;
}
答案 1 :(得分:11)
它无法直接访问,因此您必须以旧式方式执行此操作并手动筛选searchDisplayController.searchResultsTableView
的子视图。这是一个例子:
UITableView *tableView = self.searchDisplayController.searchResultsTableView;
for( UIView *subview in tableView.subviews ) {
if( [subview class] == [UILabel class] ) {
UILabel *lbl = (UILabel*)subview; // sv changed to subview.
lbl.text = @"My custom string";
}
}
我不建议这样做,因为你依赖于searchResultsTableView
的内部行为,这种行为很可能会在某些时候发生变化,破坏你的应用程序。向Apple打开错误/功能请求将是一个很好的方式。