所有button关联同一个方法
- (IBAction)identity:(UIButton *)sender {
NSArray *array = [self.butnView subviews];//获取button父视图上的所有子控件
for(int i=0;i<array.count;i++) //遍历数组 找出所有的button
{
id view = array[i];
if([view isKindOfClass:[UIButton class]])
{
UIButton *btn = (UIButton*)view;
[btn setBackgroundColor:[UIColor groupTableViewBackgroundColor]];//未选中button的颜色
btn.selected = NO;
}
}
sender.selected =YES;
[sender setBackgroundColor:RGB(46, 139, 87)];//选中button的颜色
}