我正在开发一个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
内添加一个表格视图
是否可以将表添加到单元格中?
见 图片
我用一个细胞加载这个。你看到右上角的2个文本字段吗?这将随机加载。并减少。是解决任何问题吗?
答案 0 :(得分:0)
是的,有可能。您可以在单元格内添加tableview。我建议你创建单独的委托类来处理委托和amp; tableview(单元格内部)的数据源方法,如果单元格中的所有表都具有相似的数据源。它将最大限度地降低您的代码复杂性。