IOS

关注公众号 jb51net

关闭
首页 > 软件编程 > IOS > ios 按钮点击选中与被选中

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

作者:qq_35144096

这篇文章主要介绍了iOS实现按钮点击选中与被选中切换功能,需要的朋友可以参考下

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

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

 @property (nonatomic, strong) UIButton *selecBtn;
//初始化按钮
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];

然后在方法中如下:

 - (IBAction)btnClick:(UIButton *)btn {
  self.selecBtn.enabled = YES;
  btn.enabled = NO;
  self.selecBtn = btn;
  }

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

您可能感兴趣的文章:
阅读全文