Swift如何更改UIAlertController的标题颜色
如何使用Swift更改UIAlertController的Title字体?
我不是在谈论消息的颜色,我不是在谈论按钮的颜色。
我说的是标题。
回答:
let attributedString = NSAttributedString(string: "Title", attributes: [ NSFontAttributeName : UIFont.systemFontOfSize(15), //your font here
NSForegroundColorAttributeName : UIColor.redColor()
])
let alert = UIAlertController(title: "", message: "", preferredStyle: .alert)
alert.setValue(attributedString, forKey: "attributedTitle")
let cancelAction = UIAlertAction(title: "Cancel", style: .cancel) { (_) in
}
alert.addAction(cancelAction)
present(alert, animated: true, completion: nil)
在我的答案中添加了正确的代码行,因为它比下面的答案更加简洁。
以上是 Swift如何更改UIAlertController的标题颜色 的全部内容, 来源链接: utcz.com/qa/422714.html