UIButton及其方法

// UIButton
// 点击按钮视图

// 1.Button用便利构造器创建时,不需要释放
// 2.currentTitle 当前的标题
// 3.current 当前的

// 1.创建一个Button
方式同UIView 1 ~ 4

// 2.添加边框 弧度
button.layer.borderWidth = 1;
button.layer.cornerRadius = 10;

// 3.添加一个标题
[button setTitle:@"确认" forState:UIControlStateNormal];

// 4.修改字体大小
button.titleLabel.font = [UIFont systemFontOfSize:25];

// 5.修改颜色
[button setTitleColor:[UIColor blackColor] forState:UIControlStateNormal];

// 6.放置一个图片作为button
UIButton *bu = [UIButton buttonWithType:UIButtonTypeSystem];
[bu setBackgroundImage:[UIImage imageNamed:@"文件名"] forState:UIControlStateNormal];

// 7.给button添加一个事件 (用触发button点击 去调用一个方法)
[button addTarget:self action:@selector(click:) forControlEvents:UIControlEventTouchUpInside];

// 实现一个点击后 使button改变字符的方法
- (void)click:(UIButton *)button {
    // 如果button 当前的标题是确认
    if ([button.currentTitle isEqualToString:@"确认"]) {
        // 把button的标题设为取消 在控件正常状态时
        [button setTitle:@"取消" forState:UIControlStateNormal];
        // 否则
    } else {
        // 把button的标题设为确认 在控件正常状态时
        [button setTitle:@"确认" forState:UIControlStateNormal];
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值