博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
UIButton的圆角
阅读量:5967 次
发布时间:2019-06-19

本文共 1259 字,大约阅读时间需要 4 分钟。

_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;

    }

}

转载于:https://www.cnblogs.com/fantasy3588/p/5539166.html

你可能感兴趣的文章
在 ML2 中配置 OVS vlan network - 每天5分钟玩转 OpenStack(136)
查看>>
Selenium2+python自动化34-获取百度输入联想词
查看>>
【★★★★★】提高PHP代码质量的36个技巧
查看>>
如何解决/home/oracle: is a directory报警
查看>>
python基础学习笔记(九)
查看>>
BaaS API 设计规范
查看>>
bootloader功能介绍/时钟初始化设置/串口工作原理/内存工作原理/NandFlash工作原理...
查看>>
iOS开发UI篇—Quartz2D使用(矩阵操作)
查看>>
C++ 构造函数与析构函数
查看>>
定时压缩log日志文件
查看>>
秋无痕 Windows XPSP3 集成安装增强版 V201306
查看>>
IT男成都租房记
查看>>
博为峰JavaEE技术文章 ——MyBatis Provider之@SelectProvider SQL方法
查看>>
Java核心API -- 9(异常)
查看>>
apache 编译报错:undefined reference to `apr_array_clear'
查看>>
图像识别DM8127开发攻略——UBOOT的移植说明
查看>>
ubuntu 下升级docker版本
查看>>
EXSi5.5安装篇
查看>>
开始记录吧
查看>>
windows下用php开发类似百度文库应用需要的工具和问题
查看>>