LoadingView.h 407 B

123456789101112131415161718192021
  1. //
  2. // LoadingView.h
  3. // 米兰港
  4. //
  5. // Created by 隋林栋 on 15/3/5.
  6. // Copyright (c) 2015年 Sl. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface LoadingView : UIView
  10. @property (strong, nonatomic) UIImageView *imageLoading;
  11. - (void)resetFrame:(CGRect)frame viewShow:(UIView *)viewShow;
  12. - (void)hideLoading;
  13. //stop animate
  14. - (void)stopAnimate;
  15. //begin animate
  16. - (void)beginAnimate;
  17. @end