基本设置
self.proHUD = [JGProgressHUD progressHUDWithStyle:JGProgressHUDStyleDark];
/*
JGProgressHUDStyleExtraLight = 0,
JGProgressHUDStyleLight,
JGProgressHUDStyleDark
*/
//设置提示文字
self.proHUD.textLabel.text = @"正在加载...";
//显示提示窗
[self.proHUD showInView:self.view animated:YES];
//显示时可调整位置
[self.proHUD showInRect:self.view.bounds inView:self.view];
显示
[self.proHUD dismiss];
[self.proHUD dismissAfterDelay:1 animated:YES];
[self.proHUD dismissAfterDelay:1];
[self.proHUD dismissAnimated:YES];