-(void)btnClick:(UIButton *)sender{
UITableViewCell *cell = (UITableViewCell *)sender.superview;
// 获取cell的indexPath
NSIndexPath *indexPath = [self.tableView indexPathForCell:cell];
NSLog(@"点击的是第%ld行按钮",indexPath.row);
}
-(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
网友评论