Don't duplicate the question! I have checked many answers and try many solutions but nothing is woking.
I have newly created project on Xcode 11, and add SVProgressHUD on it and showing HUD it was working fine, but background component user interaction doesn't disable on it. Currently I have implemented below code:
[SVProgressHUD setDefaultStyle:SVProgressHUDStyleLight];
[SVProgressHUD setDefaultAnimationType:SVProgressHUDAnimationTypeFlat];
[SVProgressHUD setDefaultMaskType:SVProgressHUDMaskTypeBlack];
[SVProgressHUD showWithStatus:@"Message"] ;
I use the latest version of the SVProgressHUD and use Xcode 11 and iOS 13. MaskType not working, how can I disable the user interaction?
Edit:
- It was working fine on projects that Xcode 10 or below version.