在此处已经回答了更改UIAlertViewController对象的消息和标题的字体:How to change font size and color of UIAlertAction in UIAlertController。
但我想知道如何使用Swift更改UIAlertAction(iOS8 +)标题上的字体。不幸的是,UIAlertAction实例没有名为" attributesTitle"的属性。就像UIAlertController一样。
我想扩展以更改字体的代码如下:
let alertAction = UIAlertAction(title: "Got It!", style: .Default, handler: nil)
alertController.addAction(alertAction)
任何想法都将不胜感激。