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;
网友评论