亻五毛

导航

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值)

posted on 2014-09-01 10:33  五尐毛  阅读(616)  评论(0编辑  收藏  举报