ios获得自定义cell 的当前行数


当你自定义一个cell的时候,在vc中想要对cell点击,进行编辑的时候,需要获得当前cell的行数时候。

可以在自定义cell中盖上一层view

 UIView *view = [[UIView alloc] initWithFrame:self.frame];
 view.alpha = 0;
 view.backgroundColor = [UIColor clearColor];
[self addSubview:view];


点击cell方法
- (void)addDelete:(id)sender
{
    NewsViewTableViewCell *cell = (NewsViewTableViewCell *)[[[sender superview] superview] superview];
    NSIndexPath *indexPath = [_tableView indexPathForCell:cell];
    NSLog(@"indexPath");
}


你可能感兴趣的:(tableviewcell,自定义cell当前行)