1. ホーム
  2. ios

[解決済み] UIButtonのタイトルテキスト色

2022-04-20 03:09:55

質問

の文字色を設定しています。 UIButton

headingButton.titleLabel.textColor = [UIColor colorWithRed:36/255.0 
                                                     green:71/255.0 
                                                      blue:113/255.0 
                                                     alpha:1.0];

同じコードを別のコードで使っても色が変わらないのですが、うまくいっているのでしょうか?

どうすればいいですか?

使用

オブジェクティブC

[headingButton setTitleColor:[UIColor colorWithRed:36/255.0 green:71/255.0 blue:113/255.0 alpha:1.0] forState:UIControlStateNormal];

スウィフト

headingButton.setTitleColor(.black, for: .normal)