123456789101112131415161718192021 |
- //
- // MBProgressHUDHelper.h
- // FirstLink
- //
- // Created by unicode on 14-10-20.
- // Copyright (c) 2014年 FirstLink. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- #import <MBProgressHUD.h>
- //#import <SVProgressHUD.h>
- @interface FLProgressHUDHelper : NSObject
- + (void)showText:(NSString*)text inView:(UIView*)view;
- + (void)showTipAlert:(NSString*)text;
- + (void)showCustomView:(UIView *)customView inView:(UIView *)view withComplitionBlock:(void(^)(void))complition;
- @end
|