如何获取作为tapped detail-disclosure-button的视图

时间:2010-06-09 23:12:36

标签: iphone uitableview uibutton

这款iPhone TableView中的单元格肯定有一个Detail-Disclosure-Button。

当我点击它时......这段代码不应该让我访问该按钮吗?

相反,detailButton总是为空。

- (void) tableView:(UITableView *)tableView accessoryButtonTappedForRowWithIndexPath:(NSIndexPath *)indexPath
{
    UITableViewCell *aCell = [tableView cellForRowAtIndexPath:indexPath];
    UIButton *detailButton = (UIButton *)[aCell accessoryView];
}

2 个答案:

答案 0 :(得分:0)

你是否有机会超越'cellForRowAtIndexPath'中的细胞附件按钮?

答案 1 :(得分:0)

accessoryView用于您自己的自定义,以覆盖accessoryType。表格视图单元格将在内部处理您分配给accessoryType的任何内容,而不会影响accessoryView