点击tablecell中的一个按钮,确定cell所在的行

- (void) del:(UIButton *) button {

    NSLog(@"%s",__FUNCTION__);

    UITableViewCell * cell = (UITableViewCell *) [[button superview] superview];

    NSIndexPath * path = [self.favouriteTableView indexPathForCell:cell];

    NSLog(@"index row = %d",path.row);

}

 

你可能感兴趣的:(table)