我创建主表视图使用自定义单元格。现在,我想在主表视图单元格中显示表格视图。另外,内部tableview需要自定义单元格。现在我在单元格内显示表格视图。但我不知道,如何为内部表视图创建自定义单元格。请帮我解决这个问题
答案 0 :(得分:1)
您可以执行以下操作,在任意位置加载nib。对于细胞使用:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"BDCustomCell"];
if (cell == nil) {
// Load the top-level objects from the custom cell XIB.
NSArray *topLevelObjects = [[NSBundle mainBundle] loadNibNamed:@"yourCustomCell" owner:self options:nil];
// Grab a pointer to the first object (presumably the custom cell, as that's all the XIB should contain).
cell = [topLevelObjects objectAtIndex:0];
}
return cell;
}
希望有所帮助