55.UIbutton点击切换颜色

#import "ViewController.h"

#define width_w     [UIScreen mainScreen].bounds.size.width

#define height_h     [UIScreen mainScreen].bounds.size.height

#define PRO_W(width)  width_w*(width/320.0)

#define PRO_H(height)  height_h*(height/480.0)

@interface ViewController (){

    NSMutableArray *_titleArr;

    UIView *_view;

    UIButton *_btn2;

 

 

}

 

@end

 

@implementation ViewController

 

- (void)viewDidLoad {

    [super viewDidLoad];

 

    self.view.backgroundColor = [UIColor grayColor];

    _titleArr = [[NSMutableArray alloc]initWithObjects:@"上架时间",@"价格",@"销量",nil];

//    背景View

    _view = [[UIView alloc]initWithFrame:CGRectMake(0, 64, width_w, PRO_W(35))];

    _view.backgroundColor = [UIColor whiteColor];

    

    [self.view addSubview:_view];

 

    for (int i=0; i<_titleArr.count; i++) {

        

        UIButton *btn = [UIButton buttonWithType:UIButtonTypeCustom];

 

        btn.tag = i;

        [btn setTitle:[_titleArr objectAtIndex:i] forState:UIControlStateNormal];

        [btn setTitleColor:[UIColor blackColor] forState:UIControlStateNormal];

        btn.titleLabel.font = [UIFont systemFontOfSize:13];

        btn.contentHorizontalAlignment = UIControlContentHorizontalAlignmentCenter;

        btn.frame = CGRectMake((width_w/3)*i,0,width_w/3, PRO_W(35));

        [btn addTarget:self action:@selector(clickBtn:) forControlEvents:UIControlEventTouchUpInside];

        [_view addSubview:btn];

        UIView *lineView = [[UIView alloc]initWithFrame:CGRectMake((width_w/3)*i, PRO_W(5), 1,  PRO_W(25))];

        lineView.backgroundColor = [UIColor grayColor];

        [_view addSubview:lineView];

    }

}

 

-(void)clickBtn:(UIButton *)btn {

    if(_btn2== btn) {

//            //本次点击的按钮设为红色

 

             [btn setTitleColor:[UIColor redColor] forState:UIControlStateNormal];

    } else{

  

            //本次点击的按钮设为红色

            [btn setTitleColor:[UIColor redColor] forState:UIControlStateNormal];

            //将上次点击过的按钮设为黑色

            [_btn2 setTitleColor:[UIColor grayColor] forState:UIControlStateNormal];

     }

    _btn2= btn;

 

}

 

转载于:https://www.cnblogs.com/qiangzheVSruozhe/p/9365701.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值