如何使用MDCAlertController材质设计禁用触摸屏外视图视图-Swift

时间:2018-11-09 11:58:12

标签: ios swift uialertview material-components-ios

我是新的iOS编程人员,现在着迷于使用Google提供的MaterialComponents。现在,我在名为Dialog的组件中遇到了一个问题。

当我触摸该弹出视图的外部时,该视图已在屏幕上弹出时,该视图已关闭。我不希望在我的应用程序中发生这种情况。

我不希望用户在弹出视图之外单击以关闭该弹出视图。我要的是我只希望用户单击我提供给用户选择的操作按钮,然后仅单击该操作按钮时应关闭视图。

真的很高兴您的帮助。

2 个答案:

答案 0 :(得分:1)

MDCAlertController继承自UIViewController

因此,为了限制用户在MDCAlertController之外单击,您必须访问其名为view的属性,然后访问superview?.subviews[0].isUserInteractionEnabled = false

我已经使用MDCAlertController完成了一个示例

let alert = MDCAlertController(title: title, message: message)

    alert.buttonTitleColor = UIColor(red:0.03, green:0.62, blue:0.09, alpha:1.0)

    //MDCAlertControllerThemer.applyScheme(alertScheme, to: alert)
    let okayAction = MDCAlertAction(title: "Okay") { (action) in

        print("User click okay")

    }
    let cancelAction = MDCAlertAction(title: "Cancel", handler: nil)
    alert.addAction(okayAction)
    alert.addAction(cancelAction)

    self.present(alert, animated: true, completion: {

        // When the Dialog view has pop up on screen then just put this line of code when Dialog view has completed pop up.
        alert.view.superview?.subviews[0].isUserInteractionEnabled = false
    })

答案 1 :(得分:0)