是否可以将NSMutableAttributedString设置为AlertAction的标题? 我的目标是在UIAlertAction的标题中用可靠的设计来形象化数学表达式。
let action = UIAlertAction(title: myNSMutableAttributedString, style: UIAlertActionStyle.default) {(result : UIAlertAction) -> Void in
}
提前感谢您的帮助。
答案 0 :(得分:2)
不可能在不访问私有API的情况下使用NSAttributedString
作为UIAlertAction
的标题,作为设置{的方法{1}}到属性字符串在此处不起作用(see this question for details on that)。
我会为此创建一个自定义类或使用警报库。