UIButton *按钮; 我放了cell.accessoryView = button;
在didSelectRowAtIndexPath中,我已经编写了上面的代码,但它没有在UITabelView的单元格上显示UIButton
答案 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,这会详细解释这一点。