在项目中有时会遇到有几个Button,当选中其中一个Button时,状态颜色变为选中状态,其他的为不选中状态。
再次点击选中状态的Button状态不改变(依旧是选中状态)。
针对这种情况,需要创建使用一个全局的Button属性。
@property(nonatomic,strong)UIButton *tempButton;
一般会有默认选中的Button,所以在默认的Button处写上
_liftButton.selected = YES;
_tempButton = _liftButton;
将默认的Button赋给中间变量。
-具体示例代码如下:
其实就是判断点击的Button是否为选中状态,是的话状态不改变;不是的话,把记录全局的Button选中状态改为NO,把当前的Button赋给全局Button,并且状态改为YES。
//按钮点击事件
-(void)buttonSelected:(UIButton *)sender{
if (sender != _tempButton) {
_tempButton.selected = NO;
_tempButton.backgroundColor = [UIColor grayColor];
sender.backgroundColor = [UIColor whiteColor];
_tempButton = sender;
}
_tempButton.selected = YES;
}
这里用颜色来表示选中与未选中的状态。
如果使用不同图片,在创建Button时就可以设置选中与未选中的图片,使用如下方法即可。
在点击事件中就不需要在改变颜色了。
[button setBackgroundImage:[UIImage imageNamed:imageName] forState:UIControlStateNormal];
[button setBackgroundImage:[UIImage imageNamed:selectedImgName] forState:UIControlStateSelected];