ios-根据单元格里的控件tag值,在方法外获得对应的section与row的值

时间:2023-03-08 16:17:21

ios-根据单元格里的控件tag值,在方法外获得对应的section与row的值

在cell的代理方法里:cellForRowAtIndexPath

btn.tag = indexPath.section *100 + indexPath.row;

[cell.exitPersonBtn addTarget:self action:@selector(exitPersonBtnClick:) forControlEvents:UIControlEventTouchUpInside];

btn点击后触发的方法里,通过tag值获得cell里对应的控件

GroupMemberData *grouData = [[self.sectionArydata objectAtIndex:send.tag/100] objectAtIndex:send.tab%100];(方法外获得对应单元格的tag值)