0

在此处输入图像描述我正在开发一个 iPad 应用程序。应用程序中的一个视图有一个表格视图,我正在将一个表格单元格加载到表格视图中。

// Customize the appearance of table view cells.
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {

    static NSString *identifier = @"tmpCell";
    AgendaListCellView *cell = (AgendaListCellView *)[tableView dequeueReusableCellWithIdentifier:identifier];

    if(cell == nil) {
        [[NSBundle mainBundle] loadNibNamed:@"AgendaListCellView_iPad" owner:self options:nil];

        cell = tmpCell;
    }
    cell.artist = [_mArAgendaList objectAtIndex:indexPath.row];
    // Configure the cell.
    [cell setRow:[_mArDictionaryObjects objectAtIndex:indexPath.row]];
    return cell;
}

但是现在我需要在AgendaListCellView Is it possible to add a table to a cell 中添加一个表格视图?

见下图

我正在使用一个单元格加载这个。你在右上角看到 2 个文本字段吗?这将随机加载。并有所减少。有任何解决方案吗? 在此处输入图像描述

4

1 回答 1

0

是的,有可能。您可以在单元格内添加表格视图。如果单元格中的所有表具有相似的数据源,我建议您创建单独的委托类来处理 tableview(单元格内)的委托和数据源方法。它将最小化您的代码复杂性。

于 2012-11-01T17:24:55.967 回答