如何在uitableview iphone sdk的cell.contentview上添加视图

时间:2010-05-10 07:50:35

标签: iphone uitableview

在我的应用程序中,我正在创建一个类的.xib并将该.xib加载到另一个类的uitableview的单元格上。我想将此.xib添加到cell.contentView而不是cell。我该怎么做?

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString* cellIdentifier = @"testTableCell";

testTableCell * cell = (testTableCell *)[tableView dequeueReusableCellWithIdentifier:cellIdentifier];
if (cell == nil) {
    [[NSBundle mainBundle] loadNibNamed:@"testTableCell" owner:self options:nil];
    cell = tCell;
}

return cell;
}

testTableCell是我的另一个类,我有两个标签和两个按钮,我创建了一个.xib并将其加载到tableview的单元格,如上所述。 tCell是类testTableCell的对象。

这个'真的很紧急。 有人可以帮忙吗? 提前谢谢。

1 个答案:

答案 0 :(得分:1)

好吧,如果你问的是如何将自定义单元格添加到UITableView中,而不是使用默认的UITableViewCell,那么它并不是很困难。只需按照以下教程中描述的所有步骤操作:

Creating Custom UITableViewCell using Interface Builder