Iphone 如何将表格视图转换为表格单元格

Iphone 如何将表格视图转换为表格单元格,iphone,objective-c,uitableview,Iphone,Objective C,Uitableview,我正在开发一个iPad应用程序。在应用程序中的一个视图中,有一个表视图,我正在将一个表单元格加载到表视图中 // Customize the appearance of table view cells. - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { static NSString *identifier = @"tmpCe

我正在开发一个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
是否可以将表格添加到单元格中

见 下图

我正在用手机加载这个。你看到右角有两个文本字段吗。这将随机加载。并被减少。有什么解决办法吗??
是的,这是可能的。可以在单元格内添加tableview。如果单元格中的所有表都有相似的数据源,我建议您创建单独的委托类来处理tableview(单元格内)的委托和数据源方法。它将最小化代码复杂性。

是否要在每个单元格中添加新的UITableView?嗯,这是可能的,但最终可能会变成一个大烂摊子。我认为你不了解如何使用表格。你能通过一些图片向我们展示一下你试图实现的东西吗。。。我们可以提供更好的解决方案来实施它。。