123456789101112131415161718192021222324252627282930313233 |
- //
- // CarRefreshHeadView.h
- // HaoChe-App-iOS
- //
- // Created by Sunyi on 16/10/19.
- // Copyright © 2016年 Fuzhou Qiankunhaoche E-commerce Technology. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- //背景状态
- 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
|