CarRefreshHeadView.h 1.1 KB

123456789101112131415161718192021222324252627282930313233
  1. //
  2. // CarRefreshHeadView.h
  3. // HaoChe-App-iOS
  4. //
  5. // Created by Sunyi on 16/10/19.
  6. // Copyright © 2016年 Fuzhou Qiankunhaoche E-commerce Technology. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. //背景状态
  10. typedef NS_ENUM(NSInteger, CarRefreshBackgroundType){
  11. kCarRefreshBackgroundTypeBlack = 1, //黑色背景
  12. kCarRefreshBackgroundTypeWhite = 2, //白色背景
  13. kCarRefreshBackgroundTypeDoubleCircle = 3, //圆交替
  14. };
  15. @interface CarRefreshHeadView : UIView
  16. @property (nonatomic, strong) IBOutlet UIImageView *mj_HouseView;
  17. @property (nonatomic, strong) IBOutlet UIImageView *mj_HouseView1;
  18. @property (nonatomic, strong) IBOutlet UIImageView *mj_CarView;
  19. @property (nonatomic, strong) IBOutlet UIImageView *mj_OneShoeView;
  20. @property (nonatomic, strong) IBOutlet UIImageView *mj_TowShoeView;
  21. @property (nonatomic, strong) IBOutlet UIImageView *mj_AirView;
  22. @property (nonatomic, strong) IBOutlet UIImageView *mj_SunView;
  23. //- (void)startAnimation;
  24. - (void)startAnimationCarRefreshBackgroundType:(CarRefreshBackgroundType)groundType;
  25. @end