Setting the background to black on ios13 doesn't work and the view is still light white.
For example:
MBProgressHUD *HUD = [MBProgressHUD showHUDAddedTo:view animated:YES];
HUD.mode = MBProgressHUDModeIndeterminate;
HUD.bezelView.backgroundColor = [UIColor colorWithHexString:@"#282828"];
HUD.bezelView.style = MBProgressHUDBackgroundStyleBlur;
HUD.removeFromSuperViewOnHide = YES;
HUD.contentColor = [UIColor whiteColor];
HUD.offset = CGPointMake(0, -64);
HUD.detailsLabel.text = nil;
Setting the background to black on ios13 doesn't work and the view is still light white. For example: MBProgressHUD *HUD = [MBProgressHUD showHUDAddedTo:view animated:YES]; HUD.mode = MBProgressHUDModeIndeterminate; HUD.bezelView.backgroundColor = [UIColor colorWithHexString:@"#282828"]; HUD.bezelView.style = MBProgressHUDBackgroundStyleBlur; HUD.removeFromSuperViewOnHide = YES; HUD.contentColor = [UIColor whiteColor]; HUD.offset = CGPointMake(0, -64); HUD.detailsLabel.text = nil;