iOS实现按钮点击选中与被选中切换功能

时间:2022-03-01 08:32:16

其实这个没什么记的,初始化按钮给按钮分别设置选中时对图片和被选中时的图片,给按钮添加方法,在方法中实现三句话就OK了,下面直接看代码:

首先在.m中声明一个按钮

?
1
@property (nonatomic, strong) UIButton *selecBtn;
?
1
2
3
4
5
6
7
//初始化按钮
UIButton * button = [UIButton buttonWithType:UIButtonTypeCustom];
//给按钮设置图片
[button setBackgroundImage:[UIImage imageNamed:imageArray[i]] forState:UIControlStateNormal];
[button setBackgroundImage:[UIImage imageNamed:SeleimageArray[i]] forState:UIControlStateDisabled];
      //添加方法
[button addTarget:self action:@selector(changeDataButton:) forControlEvents:UIControlEventTouchDown];

然后在方法中如下:

?
1
2
3
4
5
- (IBAction)btnClick:(UIButton *)btn {
 self.selecBtn.enabled = YES;
 btn.enabled = NO;
 self.selecBtn = btn;
 }

以上所述是小编给大家介绍的iOS实现按钮点击选中与被选中切换功能,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对服务器之家网站的支持!

原文链接:http://blog.csdn.net/qq_35144096/article/details/74690623