cell 取到它的row

我们写cell 通常都是自定义的cell ,然后我们还想在除了在这个方法外

-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath还想拿到cell的row 的话 我们可以这样实现 ,下面把 我的代码贴出来

首先 写个协议

@protocol MyIntroduceCellDelegate <NSObject>

协议里面有这个方法

- (void)MyIntroduceCell:(MyIntroduceCell *)cell


@property (nonatomic, assign) id <MyIntroduceCellDelegate>delegate;

完了 我们可以再cell 上写个button 让他

  UIButton *button = [UIButton buttonWithType:UIButtonTypeRoundedRect ];

        

        

        [button setFrame:CGRectMake(250, 23, 40, 40)];


        [button setTitle:@"购买" forState:UIControlStateNormal];


        [button addTarget:self action:@selector(buttonAction:) forControlEvents:UIControlEventTouchUpInside];

        

- (void)buttonAction:(id)sender{

    if ([self.delegate respondsToSelector:@selector(MyIntroduceCell:)]) {

        [self.delegate MyIntroduceCell:self];

    }

}

响应这个方法


然后在我们的tableView 那实现这个协议的方法

- (void)MyIntroduceCell:(MyIntroduceCell *)cell{

    NSIndexPath *indexPath = [self.introduce indexPathForCell:cell];

    x= ++x;

    

    

    NSLog(@"==countNum==%i",++countNum);

    [scale addObject: [self.saleArray objectAtIndex:indexPath.row]];

    [adress addObject:[self.addressArray objectAtIndex:indexPath.row]];

    [jing addObject:[self.fengMianName objectAtIndex:indexPath.row]];

    

    

}

这样就拿到cell 的row 了


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值