Don't allow user interaction when activity indicator view is visible

后端 未结 10 2168
你的背包
你的背包 2020-12-24 02:30

I have a view which contains two views. One of those views contains two buttons and some text labels. The other one, with alpha set to 0.25, has an UIActivityIndicator

10条回答
  •  自闭症患者
    2020-12-24 03:05

    In Swift 3.0 To Disable interaction :-

    UIApplication.shared.beginIgnoringInteractionEvents()
    

    To restore interaction :-

    UIApplication.shared.endIgnoringInteractionEvents()
    

提交回复
热议问题