UIAlertController使用圆角半径更改按钮的颜色

时间:2016-03-11 11:17:06

标签: ios swift uialertcontroller

警报控制器代码非常标准。

let alertController = UIAlertController(title: nil, message: "", preferredStyle: .ActionSheet)
let cancelAction = UIAlertAction(title: "Cancel", style: .Cancel) { (action) in
    // ...
}
alertController.addAction(cancelAction)

let OKAction = UIAlertAction(title: "OK", style: .Default) { (action) in
    // ...
}
alertController.addAction(OKAction)

let destroyAction = UIAlertAction(title: "Destroy", style: .Destructive) { (action) in
    //...
}
alertController.addAction(destroyAction)

self.presentViewController(alertController, animated: true) {
    // ...
}

所以,在我录制了警报控制器中的任何按钮后,它会解散,但是现在所有带有角半径的按钮都将背景颜色改为蓝色。 如果我没有设置按钮角半径 - 一切正常。 这个问题有解决方法吗?

0 个答案:

没有答案