NSMutableAttributedString为UIAlertAction的标题 - Swift

时间:2017-09-03 10:16:18

标签: ios swift string nsmutableattributedstring uialertaction

是否可以将NSMutableAttributedString设置为AlertAction的标题? 我的目标是在UIAlertAction的标题中用可靠的设计来形象化数学表达式。

let action = UIAlertAction(title: myNSMutableAttributedString, style: UIAlertActionStyle.default) {(result : UIAlertAction) -> Void in

}

提前感谢您的帮助。

1 个答案:

答案 0 :(得分:2)

不可能在不访问私有API的情况下使用NSAttributedString作为UIAlertAction的标题,作为设置{的方法{1}}到属性字符串在此处不起作用(see this question for details on that)。

我会为此创建一个自定义类或使用警报库。