引入头文件。#import "MBProgressHUD.h"
@property (nonatomic,strong) MBProgressHUD *hud;
- (void)viewDidLoad {
[super viewDidLoad];
#pragma mark ----- 创建加载圈 -----
self.hud = [[MBProgressHUD alloc] initWithView:self.view];
[self.view addSubview:self.hud];
}
#pragma mark --- 加载圈方法 ---
- (void)ShowHUDwith:(NSString *)title{
[self.hud show:YES];
self.hud.labelText = title;
}
- (void)hidenHUD{
[self.hud hide:YES];
}