UIButton的使用

Posted 码农的空间

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了UIButton的使用相关的知识,希望对你有一定的参考价值。

使用UIButton时需要注意的是:

1.UIButton的创建有专门的类方法(buttonWithType:,UILabel没有);

2.UIButton常用的属性包括:frame、titile、tag等;

3.UIButton使用addTarget方法关联处理方法,一个UIButton可以有多个不同的按钮响应方法,多个UIButton也可以共享一个处理方法(用tag做区分);

 

// 创建文件按钮
- (void) createRectUI {
    // 穿件圆角矩形按钮
    UIButton *btn1 = [UIButton buttonWithType:UIButtonTypeRoundedRect];
    btn1.frame = CGRectMake(100, 100, 100, 50);
    [btn1 setTitle:@"按钮1" forState:UIControlStateNormal];
    btn1.titleLabel.font = [UIFont systemFontOfSize:18];
    [self.view addSubview:btn1];
    
    UIButton *btn2 = [UIButton buttonWithType:UIButtonTypeRoundedRect];
    btn2.frame = CGRectMake(100, 200, 100, 50);
    [btn2 setTitle:@"按钮2" forState:UIControlStateNormal];
    btn2.titleLabel.font = [UIFont systemFontOfSize:18];
    [self.view addSubview:btn2];
    
    btn1.tag = 101;
    [btn1 addTarget:self action:@selector(btnPressed:) forControlEvents:UIControlEventTouchUpInside];
    btn2.tag = 102;
    [btn2 addTarget:self action:@selector(btnPressed:) forControlEvents:UIControlEventTouchUpInside];
}

- (void) btnPressed : (UIButton*) btn {
    NSInteger tag = btn.tag;
    if(tag == 101){
        NSLog(@"btn1 pressed!");
    }else{
        NSLog(@"btn2 pressed!");
    }
}

  

以上是关于UIButton的使用的主要内容,如果未能解决你的问题,请参考以下文章

iOS Coding项目片段记录

如何使用代码为 UIButton 创建自定义图像?

UIButton(在代码中使用)

使用自定义 drawRect 代码创建 UIButton LIKE 控件

如何在代码中创建自定义 UIButton 并在 xib 中使用它?

如何使用 UIButton 上的代码解锁横向模式?