Нет описания

FLProgressHUDHelper.h 489B

123456789101112131415161718192021
  1. //
  2. // MBProgressHUDHelper.h
  3. // FirstLink
  4. //
  5. // Created by unicode on 14-10-20.
  6. // Copyright (c) 2014年 FirstLink. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import <MBProgressHUD.h>
  10. //#import <SVProgressHUD.h>
  11. @interface FLProgressHUDHelper : NSObject
  12. + (void)showText:(NSString*)text inView:(UIView*)view;
  13. + (void)showTipAlert:(NSString*)text;
  14. + (void)showCustomView:(UIView *)customView inView:(UIView *)view withComplitionBlock:(void(^)(void))complition;
  15. @end