SVProgressHUD方法

第三方框架中关于HUD有MBProgressHUD和SVProgressHUD

我以为会一种就能够了,综合前辈们的经验选择了后者,而后就花了一点时间,把他的方法都看了一下。在这里用做记录,供本身巩固和查阅。app

方法

SVProgressHUD因此的方法都是类方法,而且对象是经过单例建立。因为方法都是经过类名调用,简单明了。框架

基本方法
+ (void)show; 显示:状态是一个迅速转动的圈 + (void)showWithMaskType:(SVProgressHUDMaskType)maskType; 显示而且带着一个状态 + (void)showWithStatus:(NSString*)status; 显示而且带着文字 + (void)showWithStatus:(NSString*)status maskType:(SVProgressHUDMaskType)maskType; + (void)showProgress:(float)progress; //显示进度:状态是一个进度圈 + (void)showProgress:(float)progress maskType:(SVProgressHUDMaskType)maskType; + (void)showProgress:(float)progress status:(NSString*)status; + (void)showProgress:(float)progress status:(NSString*)status maskType:(SVProgressHUDMaskType)maskType; + (void)setStatus:(NSString*)string; // 改变正显示着的HUD的文字 // stops the activity indicator, shows a glyph + status, and dismisses HUD a little bit later + (void)showInfoWithStatus:(NSString *)string; //显示消息信息,其实就是中心图片更换了 + (void)showInfoWithStatus:(NSString *)string maskType:(SVProgressHUDMaskType)maskType; + (void)showSuccessWithStatus:(NSString*)string; //显示成功消息 + (void)showSuccessWithStatus:(NSString*)string maskType:(SVProgressHUDMaskType)maskType; + (void)showErrorWithStatus:(NSString *)string; //显示错误消息 + (void)showErrorWithStatus:(NSString *)string maskType:(SVProgressHUDMaskType)maskType; // use 28x28 white pngs + (void)showImage:(UIImage*)image status:(NSString*)status; //显示本身设置的图片,图片大小事28 * 28 px + (void)showImage:(UIImage*)image status:(NSString*)status maskType:(SVProgressHUDMaskType)maskType; + (void)setOffsetFromCenter:(UIOffset)offset; //距离中心点的偏移量 + (void)resetOffsetFromCenter; //返回中心点 + (void)popActivity; // 消除一个HUD,根据其实现方法若是前面有执行了好几回show方法,若是给定的progress == 0 或者 pregress < 0那样就会让使一个参数+1,执行这个方法会使那个参数-1,若是参数==0时 执行dismiss方法。 + (void)dismiss; 消失 + (BOOL)isVisible; 是否正在显示 

关于HUD的属性配置

+ (void)setBackgroundColor:(UIColor*)color; //背景颜色 // default is [UIColor whiteColor] + (void)setForegroundColor:(UIColor*)color; //progress 和 label颜色 // default is [UIColor blackColor] + (void)setRingThickness:(CGFloat)width; //progress 宽度 // default is 4 pt + (void)setFont:(UIFont*)font; //字体 // default is [UIFont preferredFontForTextStyle:UIFontTextStyleSubheadline] + (void)setInfoImage:(UIImage*)image; //消息的图片 // default is the bundled info image provided by Freepik + (void)setSuccessImage:(UIImage*)image; //成功时的图片 // default is the bundled success image provided by Freepik + (void)setErrorImage:(UIImage*)image; //失败时的图片 // default is the bundled error image provided by Freepik + (void)setDefaultMaskType:(SVProgressHUDMaskType)maskType; //当HUD显示时,用户是否能够点击其余控件// default is SVProgressHUDMaskTypeNone SVProgressHUDMaskTypeNone = 1, // 容许用户进行其余用户操做 SVProgressHUDMaskTypeClear, // 不容许用户进行其余用户操做 SVProgressHUDMaskTypeBlack, // 不容许用户进行其余用户操做,而且背景是黑色的 SVProgressHUDMaskTypeGradient // 容许用户进行其余用户操做,而且背景是渐变的黑色 + (void)setViewForExtension:(UIView*)view; //能够延展一个图片必须设置#define SV_APP_EXTENSIONS 

关于HUD的通知

extern NSString * const SVProgressHUDDidReceiveTouchEventNotification; 在HUD外点击 extern NSString * const SVProgressHUDDidTouchDownInsideNotification; 在HUD中点击 extern NSString * const SVProgressHUDWillDisappearNotification; 将要显示 extern NSString * const SVProgressHUDDidDisappearNotification; 已经显示 extern NSString * const SVProgressHUDWillAppearNotification; 将要消失 extern NSString * const SVProgressHUDDidAppearNotification; 已经消失 extern NSString * const SVProgressHUDStatusUserInfoKey; HUD的状态 

在通知中userInfo字典中存储了HUD的状态,其key为SVProgressHUDStatusUserInfoKeyide

MBProgressHUD的基本使用

/** * 类方法 */ /* MBProgressHUD *hud = [MBProgressHUD showHUDAddedTo:self.view animated:YES]; @weakify(hud) dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(2 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{ @strongify(hud) [MBProgressHUD hideAllHUDsForView:self.view animated:YES]; }); */ /** * 实例方法 */ MBProgressHUD *hud = [[MBProgressHUD alloc] initWithView:self.view]; //显示hud的模式 hud.mode = MBProgressHUDModeDeterminate; //背景颜色 hud.color = [UIColor redColor]; //主标题 hud.labelText = @"主标题"; //副标题 hud.detailsLabelText = @"副标题"; //显示、隐藏时的动画样式 hud.animationType = MBProgressHUDAnimationZoomIn; //当mode的属性是跟进度相关时,就能够设置progress的值,实现实时进度的显示 hud.progress = 0.8; // HUD的相对于父视图 x 的偏移,默认居中 // hud.xOffset = 50; // hud.yOffset = 50; //是否显示蒙板 hud.dimBackground = YES; //HUD内部视图相对于HUD的内边距 hud.margin = 50; //HUD的圆角半径 hud.cornerRadius = 20; //最小的显示时间 hud.minShowTime = 3.0; // HUD的最小尺寸 hud.minSize = CGSizeMake(300, 300); // 代理中只有一个方法,即得到HUD隐藏后的时刻 // hud.delegate = self; [self.view addSubview:hud]; [hud showAnimated:YES whileExecutingBlock:^{ //hud执行期间 NSLog(@"执行期间"); } onQueue:dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0) completionBlock:^{ //hud执行完毕 NSLog(@"执行完毕"); }]; } 
相关文章
相关标签/搜索