Closed xuhongfei closed 7 years ago
` MBProgressHUD *hud = [MBProgressHUD showHUDAddedTo:view animated:YES]; hud.mode = MBProgressHUDModeCustomView;
hud.customView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"0"]]; hud.bezelView.backgroundColor = [UIColor blackColor]; hud.bezelView.alpha = .76f; hud.bezelView.style = MBProgressHUDBackgroundStyleSolidColor; hud.label.text = text; hud.label.textColor = UIColorFromRGB(0xffda44); hud.detailsLabel.text = detailsText; hud.detailsLabel.textColor = UIColorFromRGB(0xffffff); hud.removeFromSuperViewOnHide = YES; [hud hideAnimated:YES afterDelay:afterDelay];`
hud.bezelView background color always is white color.
try
hud.bezelView.color = [UIColor blackColor];
@winterWD That's right. ths!
` MBProgressHUD *hud = [MBProgressHUD showHUDAddedTo:view animated:YES]; hud.mode = MBProgressHUDModeCustomView;
hud.bezelView background color always is white color.