UIbutton 圆角和边线

本文介绍如何使用Objective-C为UIButton设置特定样式,包括圆形按钮、边框宽度、边框颜色及字体大小等属性,并展示了如何设置按钮的文字内容和文字颜色。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

#define WhiteColor [UIColor whiteColor]
#define YellowColor  Color_RGB(253,131,42,1)//主题黄
#define Font(a)     [UIFont systemFontOfSize:a * kWidth];

    UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];
    button.layer.cornerRadius = 63.5;  // 圆角的弧度  数值是高宽的一半  为圆形
    button.layer.borderWidth = 5;    //边线宽度
    button.layer.borderColor = WhiteColor.CGColor;      // 使用.CGColor  边线颜色
    button.titleLabel.font = Font(25.0);     
    [button setTitle:@"测 试" forState:UIControlStateNormal];
    button.backgroundColor = YellowColor;
    [button setTitleColor:WhiteColor forState:UIControlStateNormal];
 
    [self.view addSubview:button];

转载于:https://www.cnblogs.com/sayimba/p/5653577.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值