在设置的BUTTON的selector的方法中如下设置:
- (void)button:(id)sender {
UITableViewCell * cell = (UITableViewCell *)[[sender superview] superview];
NSIndexPath * path = [self.tableView indexPathForCell:cell];
NSLog(@"index row%d", [path row]);
}
- (void)button:(id)sender;方法是我设置的button的selector