UIAlertViewController オブジェクトのメッセージとタイトルのフォントを変更することは、既にここで回答されています: How to change font size and color of UIAlertAction in UIAlertController .
しかし、Swiftを使ってUIAlertAction(iOS8+)のタイトルのフォントを変更する方法を知りたいです。残念ながら、UIAlertAction インスタンスには、UIAlertController のような「attributedTitle」という属性がありません。
フォントを変更するために拡張したいコードは次のとおりです。
let alertAction = UIAlertAction(title: "Got It!", style: .Default, handler: nil)
alertController.addAction(alertAction)
どんなアイデアでも大歓迎です。