与UITableview单元格相关的问题

时间:2010-04-26 06:38:55

标签: iphone

UIButton *按钮; 我放了cell.accessoryView = button;

在didSelectRowAtIndexPath中,我已经编写了上面的代码,但它没有在UITabelView的单元格上显示UIButton

1 个答案:

答案 0 :(得分:2)

您需要将其放在委托方法-tableView:cellForRowAtIndexPath:中,该方法初始化并返回表视图的单元格:

- (UITableViewCell *) tableView:(UITableView *)tv cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    // initialize cell and contents here, for the specified indexPath value
}

您可能需要阅读Table View Programming Guide for iPhone OS,这会详细解释这一点。