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

后端 未结 10 2130
你的背包
你的背包 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:27

    To disable touch event in a view,

    [[UIApplication sharedApplication] beginIgnoringInteractionEvents];
    

    To enable touch event in a view

    [[UIApplication sharedApplication] endIgnoringInteractionEvents];
    

提交回复
热议问题