UIButton的基本使用

UIButton *btn = [UIButton new]; // 创建UIButton按钮

// 设置button里面的文字大小
btn.titleLabel.font = [UIFont systemFontOfSize:14];

//  设置按钮的文字和选中状态
[btn setTitle:@"button里面的文字" forState:UIControlStateNormal];

//  设置按钮的文字颜色和选中状态
[btn setTitleColor:@"button里面的文字颜色" forState:UIControlStateNormal];

//  设置按钮的图片和选中状态
[btn setImage:[UIImage imageNamed:@"图片名"] forState:UIControlStateNormal];

//设置图片在Button里面的位置
[btn setImageEdgeInsets:UIEdgeInsetsMake(10, 10, 10, 10)];

//  添加按钮的点击事件
[btn addTarget:self action:@selector(方法名) forControlEvents:UIControlEventTouchUpInside];

//  添加到view上面
[self.view addSubView:btn];

- (void)方法名
{
  NSLog(@"按钮点击");
}

你可能感兴趣的:(UIButton的基本使用)