Rumah > Soal Jawab > teks badan
collectionview 里有多个section 多个cell 如何知道点击的是哪个section里的哪个row里的button???????
想选择button改变选中的button的颜色
阿神2017-04-17 17:35:09
最简单的方法根据button的tag直接改button颜色就好了,不用找section,row.
UIButton btn = (UIButton )[self.view viewWithTag:564684];
巴扎黑2017-04-17 17:35:09
自定义一个UIButton,然后给button添加属性 比如:
@property (nonatomic) NSInteger section;
@property (nonatomic) NSInteger row;
然后在cellForRowAtIndexPath:里赋值