修改MBProgressHUD背景框为黑色

MBProgressHUD *HUD = [MBProgressHUD showHUDAddedTo:[[UIApplication sharedApplication].windows lastObject] animated:YES];

HUD.animationType=MBProgressHUDAnimationFade;

HUD.label.text= text;

[HUD showAnimated:YES];

HUD.bezelView.backgroundColor = [UIColor blackColor];

HUD.label.textColor = White;

HUD.activityIndicatorColor = White;

你可能感兴趣的:(修改MBProgressHUD背景框为黑色)