BHUD 1.0.5

BHUD 1.0.5

february29 维护。



BHUD 1.0.5

  • february29

BHUD

加载框显示工具

图片名称 图片名称 图片名称 图片名称

集成说明

pod

pod BHUD

手动集成

将 BHUD 文件夹拖入

基本说明

引入头文件

#import "BHudView.h"

显示indicatorInView和label

[BHudView showHudInView:self.view];
或者
[BHudView showHudInView:self.view indicatorViewStyle:BHudJumpBarIndicatorView];

显示 indicatorInView

[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];