我正在嘗試更改使用UIAlertController顯示的警報的標題和消息字體 我嘗試使用NSAttributedStirng,但它給出的編譯器錯誤是NSAttributed字符串不能採取替代Stirng 我試過類似this在Swift中使用UIAlertController更改警報的標題和消息字體
var title_attrs = [NSFontAttributeName : CustomFonts.HELVETICA_NEUE_MEDIUM_16]
var msg_attrs = [NSFontAttributeName : CustomFonts.HELVETICA_NEUE_REGULAR_14]
var title = NSMutableAttributedString(string:"Done", attributes:title_attrs)
var msg = NSMutableAttributedString(string:"The job is done ", attributes:msg_attrs)
let alertController = UIAlertController(title: title, message: title , preferredStyle: UIAlertControllerStyle.Alert)
有人能指導我怎麼能做到這一點的東西嗎?