1. ホーム
  2. ios

[解決済み] UIButtonのタイトルテキスト色を設定するには?

2022-05-12 06:08:10

質問

ボタンの文字の色を変えてみましたが、白のままです。

isbeauty = UIButton()
isbeauty.setTitle("Buy", forState: UIControlState.Normal)
isbeauty.titleLabel?.textColor = UIColorFromRGB("F21B3F")
isbeauty.titleLabel!.font = UIFont(name: "AppleSDGothicNeo-Thin" , size: 25)
isbeauty.backgroundColor = UIColor.clearColor()
isbeauty.layer.cornerRadius = 5
isbeauty.layer.borderWidth = 1
isbeauty.layer.borderColor = UIColorFromRGB("F21B3F").CGColor
isbeauty.frame = CGRectMake(300, 134, 55, 26)
isbeauty.addTarget(self,action: "first:", forControlEvents: UIControlEvents.TouchUpInside)
self.view.addSubview(isbeauty)

また、赤、黒、青と変えてみましたが、何も起こりません。

どのように解決するのですか?

この場合 func setTitleColor(_ color: UIColor?, for state: UIControl.State) を、実際のタイトルテキストを設定するのと同じ方法で設定します。 ドキュメント

isbeauty.setTitleColor(UIColorFromRGB("F21B3F"), for: .normal)