我是新的iOS编程人员,现在着迷于使用Google提供的MaterialComponents
。现在,我在名为Dialog
的组件中遇到了一个问题。
当我触摸该弹出视图的外部时,该视图已在屏幕上弹出时,该视图已关闭。我不希望在我的应用程序中发生这种情况。
我不希望用户在弹出视图之外单击以关闭该弹出视图。我要的是我只希望用户单击我提供给用户选择的操作按钮,然后仅单击该操作按钮时应关闭视图。
真的很高兴您的帮助。
答案 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)
使用它。
let alert = MDCAlertController(title: title, message: message)
alert.mdc_dialogPresentationController.dismissOnBackgroundTap = false