NSMutableAttributedString 作为 UIAlertAction 的标题 - Swift
NSMutableAttributedString as UIAlertAction's title - Swift
是否可以将 NSMutableAttributedString 设置为 AlertAction 的标题?
我的目标是在我的 UIAlertAction 标题中以良好的设计可视化数学表达式。
let action = UIAlertAction(title: myNSMutableAttributedString, style: UIAlertActionStyle.default) {(result : UIAlertAction) -> Void in
}
在此先感谢您的帮助。
不可能在不访问私有 API 的情况下将 NSAttributedString
用于 UIAlertAction
的标题,作为设置 [=12] 的方法=] 到属性字符串在这里不起作用 (see this question for details on that)。
我会创建自定义 class 或为此使用警报库。
是否可以将 NSMutableAttributedString 设置为 AlertAction 的标题? 我的目标是在我的 UIAlertAction 标题中以良好的设计可视化数学表达式。
let action = UIAlertAction(title: myNSMutableAttributedString, style: UIAlertActionStyle.default) {(result : UIAlertAction) -> Void in
}
在此先感谢您的帮助。
不可能在不访问私有 API 的情况下将 NSAttributedString
用于 UIAlertAction
的标题,作为设置 [=12] 的方法=] 到属性字符串在这里不起作用 (see this question for details on that)。
我会创建自定义 class 或为此使用警报库。