// // CarRefreshHeadView.h // HaoChe-App-iOS // // Created by Sunyi on 16/10/19. // Copyright © 2016年 Fuzhou Qiankunhaoche E-commerce Technology. All rights reserved. // #import //背景状态 typedef NS_ENUM(NSInteger, CarRefreshBackgroundType){ kCarRefreshBackgroundTypeBlack = 1, //黑色背景 kCarRefreshBackgroundTypeWhite = 2, //白色背景 kCarRefreshBackgroundTypeDoubleCircle = 3, //圆交替 }; @interface CarRefreshHeadView : UIView @property (nonatomic, strong) IBOutlet UIImageView *mj_HouseView; @property (nonatomic, strong) IBOutlet UIImageView *mj_HouseView1; @property (nonatomic, strong) IBOutlet UIImageView *mj_CarView; @property (nonatomic, strong) IBOutlet UIImageView *mj_OneShoeView; @property (nonatomic, strong) IBOutlet UIImageView *mj_TowShoeView; @property (nonatomic, strong) IBOutlet UIImageView *mj_AirView; @property (nonatomic, strong) IBOutlet UIImageView *mj_SunView; //- (void)startAnimation; - (void)startAnimationCarRefreshBackgroundType:(CarRefreshBackgroundType)groundType; @end