我已将UIButton
添加到连接到以下方法的原型单元格中。在UITableViewController
上填充了几个原型单元格。但是,每当我运行它时,path.row
始终为每个表格单元格返回0
。
- (IBAction)deleteButton:(UIButton *)sender {
UIButton *button = (UIButton *)sender;
UITableViewCell *cell = (UITableViewCell*)[button superview];
NSIndexPath *path = [self.tableView indexPathForCell:cell];
NSLog(@"You deleted %ld",(long)path.row);
}