0

我有一个使用拆分视图控制器的 iPad 应用程序。在主视图中,我使用情节提要中定义的自定义表格单元格显示了一个项目列表。

单元格按照我在 Xcode 中选择的深色背景显示。

我正在使用一个UISearchBarUISearchDisplayController

当我开始搜索时,列表变为标准的白色表格单元格。

如何让 SearchDisplayController 使用我的自定义单元格?

当我在搜索字段中键入时,回调会更新过滤结果列表:

- (BOOL)searchDisplayController:(UISearchDisplayController *)controller
                         shouldReloadTableForSearchString:(NSString *)searchString
{
    [self filterAvailableChannelsForSearchText:searchString scope:[[self.searchDisplayController.searchBar scopeButtonTitles] objectAtIndex:[self.searchDisplayController.searchBar selectedScopeButtonIndex]]];
    [self.searchDisplayController.searchBar selectedScopeButtonIndex]]];

    return YES;
}

我的表格视图处理使用它来呈现完整列表或过滤列表。CellIdentifier 与故事板中单元格的标识符匹配:

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    if (tableView == self.searchDisplayController.searchResultsTableView)
        return [self.filteredAvailableChannel count];
    else
        return [[self availableChannelList] count];
}

- (UITableViewCell *)tableView:(UITableView *)tableView
         cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *CellIdentifier = @"AvailableChannelCell";
    FVAvailableChannelCell *cell = [self.tableView dequeueReusableCellWithIdentifier:CellIdentifier];

    // Configure the cell...
    FVChannel *channel = nil;
    int row = [indexPath row];
    if (tableView == self.searchDisplayController.searchResultsTableView)
        channel = [self.filteredAvailableChannel objectAtIndex:row];
    else
        channel = [[self availableChannelList] objectAtIndex:row];

    cell.idLabel.text = channel.channelID;
    cell.nameLabel.text = channel.channelName;
    cell.unitLabel.text = channel.unitName;

    return cell;
}

为什么我的 searchDisplayController 不使用我的自定义单元格?

2012 年 7 月 31 日更新

在检查了所有情节提要的连接(似乎是正确的)之后,我注意到了一些东西……</p>

我可以看到我实际上正在获取一个自定义单元格 - 它看起来就像一个标准单元格。 

在我修好之后,tableView:heightForRowAtIndexPath:我注意到了一些事情。当我选择一个单元格时,我可以看到自定义单元格在那里,但由于它似乎忽略了我的自定义单元格的背景颜色,我将我的自定义白色文本放在标准白色背景之上,使其看起来像空单元格。

自定义单元类中的断点initWithStyle:reuseIdentifier:永远不会被击中,所以有些东西不在那里。  

任何指针:

  1. 在 SearchResultsController 中的单元格上获取自定义背景颜色时缺少什么?
  2. 为什么我的自定义单元格的 initWithStyle 没有被命中?它被设置为故事板中单元格的类。
4

1 回答 1

-1

Apple 开发者论坛上的反馈以及以下帖子很有帮助:

如何自定义 UITableViewCell 的背景颜色?

简而言之,覆盖tableView:willDisplayCell:,您可以适当地设置背景颜色。

于 2012-08-03T19:02:16.767 回答