这款iPhone TableView中的单元格肯定有一个Detail-Disclosure-Button。
当我点击它时......这段代码不应该让我访问该按钮吗?
相反,detailButton总是为空。
- (void) tableView:(UITableView *)tableView accessoryButtonTappedForRowWithIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell *aCell = [tableView cellForRowAtIndexPath:indexPath];
UIButton *detailButton = (UIButton *)[aCell accessoryView];
}
答案 0 :(得分:0)
你是否有机会超越'cellForRowAtIndexPath'中的细胞附件按钮?
答案 1 :(得分:0)
accessoryView
用于您自己的自定义,以覆盖accessoryType
。表格视图单元格将在内部处理您分配给accessoryType
的任何内容,而不会影响accessoryView
。