当用户触摸警报时,如何防止SDCAlertview被解雇?

时间:2017-11-09 06:48:50

标签: ios swift sdcalertview

如何将dismissOnOutsideTapped设置为false?我试图阻止用户解除AlertController,直到点击确定按钮

myView.translatesAutoresizingMaskIntoConstraints = false
myView.heightAnchor.constraint(equalToConstant: 100).isActive = true

    let attributedString = NSAttributedString(string: title, attributes: [
        NSAttributedStringKey.foregroundColor : #colorLiteral(red: 0.8226075768, green: 0.2890471816, blue: 0.2390623093, alpha: 1)
        ])
    let alert = AlertController(title: "", message: "")
    alert.setValue(attributedString, forKey: "attributedTitle")


let OkAction: AlertAction = AlertAction(title: "OK", style: .preferred) { (action) in
   MyCode......
}
alert.addAction(OkAction)
alert.contentView.addSubview(myView)
myView.leftAnchor.constraint(equalTo: alert.contentView.leftAnchor).isActive = true
myView.rightAnchor.constraint(equalTo: alert.contentView.rightAnchor).isActive = true
myView.centerXAnchor.constraint(equalTo: alert.contentView.centerXAnchor).isActive = true
myView.topAnchor.constraint(equalTo:alert.contentView.topAnchor, constant: -25).isActive = true
content.bottomAnchor.constraint(equalTo: alert.contentView.bottomAnchor).isActive = true



alert.view.tintColor = #colorLiteral(red: 0.8226075768, green: 0.2890471816, blue: 0.2390623093, alpha: 1)
alert.present()

1 个答案:

答案 0 :(得分:0)

您可以使用AlertBehaviors禁用外部触摸。这样的事情。

let alert = AlertController(title: "", message: "")
alert.behaviors = AlertBehaviors.init(rawValue: 0) 

有关详细信息,请参阅github docs中的AlertBehaviors

相关问题