#実現したいこと
UIButtonのタイトルラベルに下線を付けた上で色を調整する
#経緯
下線を付ける方法を調べていたら
let AttributedString = NSAttributedString(string: "text", attributes: [.underlineStyle: NSUnderlineStyle.single.rawValue
と書けば下線を弾けることが分かった。
しかし、色が青色になってしまう。
button.setTitleColor(ColorManager().white(), for: .normal)
と書いても色を変更できないため、ハマった。
#結論
"text", attributes: [.underlineStyle: NSUnderlineStyle.single.rawValue, NSAttributedString.Key.foregroundColor : UIColor.white])
button.setAttributedTitle(AttributedString, for: .normal)```
と書けば良い。