tableViewの詳細ボタンをクリックすると...セクション番号、行番号、さらにはセル自体を取得できます...しかし、実際の「詳細ボタン」が取得できないのはなぜですか? (NSLog は、常にボタンに対して "(null)" を表示します。)
- (void) tableView:(UITableView *)tableView accessoryButtonTappedForRowWithIndexPath:(NSIndexPath *)indexPath
{
int section = indexPath.section;
int row = indexPath.row;
UITableViewCell *aCell = [tableView cellForRowAtIndexPath:indexPath];
UIButton *detailButton = (UIButton *)[aCell accessoryView];
// Why is detailButton null?
NSLog(@"accessory button tapped for row with index path %d x %d \n cell=(%@) \n button=(%@)", section, row, aCell, detailButton);
}