美文网首页
在cell中的button点击事件中获取cell的indexPa

在cell中的button点击事件中获取cell的indexPa

作者: xu1Peng | 来源:发表于2021-01-26 17:46 被阅读0次
    -(void)btnClick:(UIButton *)sender{
        UITableViewCell *cell = (UITableViewCell *)sender.superview;
        // 获取cell的indexPath
        NSIndexPath *indexPath = [self.tableView indexPathForCell:cell];
        NSLog(@"点击的是第%ld行按钮",indexPath.row);
    }
    

    相关文章

      网友评论

          本文标题:在cell中的button点击事件中获取cell的indexPa

          本文链接:https://www.haomeiwen.com/subject/ivxnzktx.html