加载框显示工具
pod BHUD
拖入BHUD文件夹
引入头文件
#import "BHudView.h"
[BHudView showHudInView:self.view];
或者
[BHudView showHudInView:self.view indicatorViewStyle:BHudJumpBarIndicatorView];
[BHudView showIndicatorInView:self.view];
或者
[BHudView showIndicatorInView:self.view indicatorViewStyle:BHudLaunchBarIndicatorView];
[BHudView showErrorInView:self.view clickBlock:^{
[BHudView hideHudInView:self.view];
}];
自定义用法
UIView *customView = [[UIView alloc]initWithFrame:CGRectMake(200, 200, 200, 200)];
[customView setBackgroundColor: [UIColor greenColor]];
[BHudView showCustomHudView:customView InView:self.view];