我正在创建一个使用数组填充的详细信息披露按钮。但是,在我的类中没有调用 accessoryButtonTappedForRowWithIndexPath: 函数。它是一个TableviewDelegate
和TableviewDatasource
委托。
- (void)tableView:(UITableView *)tableView accessoryButtonTappedForRowWithIndexPath:(NSIndexPath *)indexPath{
NSLog(@"reaching accessoryButtonTappedForRowWithIndexPath:");
[self performSegueWithIdentifier:@"modaltodetails" sender:[self.eventsTable cellForRowAtIndexPath:indexPath]];
}
NSLog 没有打印到控制台,这让我相信该函数没有被调用......这当然是当我在单元格上选择时。下面的屏幕截图显示了我如何设置单元格。