我想创建一个背景色为#E74C3C
这是我到目前为止的代码:
[UIColor colorWithRed: 0.906 green: 0.298 blue: 0.235 alpha: 1];
答案 0 :(得分:4)
UIButton *btn = [[UIButton alloc] initWithFrame:CGRectMake(0, 0, 80, 40)];
btn.backgroundColor = [UIColor colorWithRed: 0.906 green: 0.298 blue: 0.235 alpha: 1];
[btn setTitle:@"Test" forState:UIControlStateNormal];
[self.view addSubview:btn];
答案 1 :(得分:3)
您首先需要在故事板中使用按钮。然后,在IBOutlet
文件中,确保您的按钮有@property (strong, nonatomic) IBOutlet UIButton *myButton;
。
在实施 @synthesize myButton;
将此定义为属性后,您可以在 或 完成此操作后,请务必在故事板中连接插座:Apple Documentation中提供有关该插座的信息。 要围绕按钮的角落,只需执行以下操作:viewDidLoad
viewDidAppear
或myButton.backgroundColor = [UIColor colorWithRed: 0.906 green: 0.298 blue: 0.235 alpha: 1];
中设置按钮的颜色,如下所示:[myButton setBackgroundColor:[UIColor colorWithRed: 0.906 green: 0.298 blue: 0.235 alpha: 1]];
myButton.layer.cornerRadius = 5;
./configure --user=www --group=www --prefix=/usr/local/nginx --with-http_ssl_module --with-http_stub_status_module
答案 2 :(得分:2)