警报控制器代码非常标准。
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) {
// ...
}
所以,在我录制了警报控制器中的任何按钮后,它会解散,但是现在所有带有角半径的按钮都将背景颜色改为蓝色。 如果我没有设置按钮角半径 - 一切正常。 这个问题有解决方法吗?