我正在开发一个 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 个文本字段吗?这将随机加载。并有所减少。有任何解决方案吗?