私は助けが必要です!私はこれに非常に慣れておらず、塗りつぶしの色で UIButton を作成しようとしていますが、UIColor を作成して塗りつぶそうとするたびに機能しません。
私が使用する場合:
UIColor *orangeButtonColor = [UIColor blackColor];
UIButton *firstButton = [UIButton buttonWithType:UIButtonTypeCustom];
firstButton.frame = CGRectMake(6, 9, 64, 64);
[firstButton setTitle:@"Select" forState:UIControlStateNormal];
firstButton.backgroundColor = orangeButtonColor;
[self.view addSubview:firstButton];
画面に黒いボタンが表示されますが、RGBカラーを使用したカスタムカラーのボタンが必要です(実際にはCMYKが私の好みですが、それも機能しません)。したがって、コードを次のように変更します。
UIColor *orangeButtonColor = [UIColor colorWithRed:246 green:180 blue:119 alpha:1];
UIButton *firstButton = [UIButton buttonWithType:UIButtonTypeCustom];
firstButton.frame = CGRectMake(6, 9, 64, 64);
[firstButton setTitle:@"Select" forState:UIControlStateNormal];
firstButton.backgroundColor = orangeButtonColor;
[self.view addSubview:firstButton];
そして、ボタンがあった画面には何もなく、白だけです。なぜこの問題が発生するのかわかりませんが、助けていただければ幸いです。