首页 > 其他 > 详细

UIButton的圆角

时间:2016-05-29 12:14:38      阅读:189      评论:0      收藏:0      [点我收藏+]

_interestedBtn = [UIButton buttonWithType:UIButtonTypeCustom];

    _interestedBtn.layer.cornerRadius = 8;

    _interestedBtn.layer.borderColor = [UIColor orangeColor].CGColor;

    _interestedBtn.layer.borderWidth = 1;

    _interestedBtn.layer.masksToBounds = YES;

    [_interestedBtn setTitle:@"感兴趣" forState:UIControlStateNormal];

    [_interestedBtn setTitle:@"已感兴趣" forState:UIControlStateSelected];

    [_interestedBtn setTitleColor:[UIColor orangeColor] forState:UIControlStateNormal];

    [_interestedBtn setTitleColor:[UIColor lightGrayColor] forState:UIControlStateSelected];

    [_interestedBtn addTarget:self action:@selector(interestedBtnAction:) forControlEvents:UIControlEventTouchUpInside];

    [self.contentView addSubview:_interestedBtn];

 

-(void)interestedBtnAction:(UIButton *)sender{

    sender.selected = !sender.selected;

    

    if (sender.selected) {

        _interestedBtn.layer.cornerRadius = 8;

        _interestedBtn.layer.borderColor = [UIColor lightGrayColor].CGColor;

        _interestedBtn.layer.borderWidth = 1;

        _interestedBtn.layer.masksToBounds = YES;

    }else{

        _interestedBtn.layer.cornerRadius = 8;

        _interestedBtn.layer.borderColor = [UIColor orangeColor].CGColor;

        _interestedBtn.layer.borderWidth = 1;

        _interestedBtn.layer.masksToBounds = YES;

    }

}

UIButton的圆角

原文:http://www.cnblogs.com/fantasy3588/p/5539166.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!