1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- //
- // UIViewController+HUB.h
- // ZhuDD
- //
- // Created by 张夏永 on 17/5/2.
- // Copyright © 2017年 ZXY. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #define IS_IPHONE_5 ( fabs( ( double )[ [ UIScreen mainScreen ] bounds ].size.height - ( double )568 ) < DBL_EPSILON )
- @interface UIViewController (HUB)
- /**
- 指定页面提示
- */
- - (void)ShowHudInView:(UIView *)view hint:(NSString *)hint;
- /**
- 文字提示
- */
- - (void)ShowReminder:(NSString *)reminder waitTime:(float)t with:(void(^)(void))block;
- /**
- 固定错误提示
- */
- -(void)ShowBadNetWork;
- /**
- 加载进度菊花
- */
- - (void)ShowHint:(NSString *)hint;
- - (void)ShowHint:(NSString *)hint vc:(UIViewController *)vc;
- /**
- 提示(可换提示框位置)
- */
- - (void)ShowHint:(NSString *)hint yOffset:(float)yOffset;
- /**
- 关闭提示框
- */
- - (void)HideHud;
- - (void)hideWithMsg:(NSString *)msg After:(CGFloat)delay;
- @end
|