我有一个
UIAlertView
这将突出显示“取消”按钮,但应突出显示另一个按钮。切换按钮不是一个选项。
我就是这样初始化警报的:
let downloadAlert = UIAlertView(title: NSLocalizedString("Title", comment: ""),
message: NSLocalizedString("Message", comment: ""),
delegate: self,
cancelButtonTitle: NSLocalizedString("Cancel", comment: ""),
otherButtonTitles: NSLocalizedString("Okay", comment: ""))
这是它的样子:
谢谢你的帮助。