Как изменить цвет фона кнопки Отмена
Я пытался изменить цвет фона кнопки "Отмена" листа UIAction, но это не работает. Вот мой фрагмент кода
if let subview = alertController.view.subviews.first, let alertContentView = subview.subviews.first {
for innerView in alertContentView.subviews {
innerView.backgroundColor = UIColor.red//StyleKit.popoverDefaultBackgroundColor
//drop shadow
innerView.layer.masksToBounds = false
innerView.layer.shadowOpacity = 0.8
}
}
let subview = alertController.view.subviews.last! as UIView
let alertContentView = subview.subviews.last! as UIView
alertContentView.backgroundColor = UIColor.black
let cancelAction = UIAlertAction(title: "Cancel".localize(), style: .cancel)
alertController.addAction(changeAction)
alertController.addAction(cancelAction)
1 ответ
Попробуй это - let subView = alertController.view.subviews.first!
Var alertContentView = subView.subviews.first!
alertContentView.backgroundColor = UIColor.black
alertContentView.layer.cornerRadius = 5