点击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);
}

 

posted @ 2013-12-12 10:41  Dadada胖纸er  阅读(305)  评论(0编辑  收藏  举报