// // RankingListHeadView.h // tongxin // // Created by WeiChaoZheng on 2018/8/24. // Copyright © 2018年 xTT. All rights reserved. // #import @class Step; @interface RankingListHeadView : UIView @property (strong, nonatomic) IBOutlet UIView *firstView; @property (strong, nonatomic) IBOutlet UIImageView *firstDeviceImageView; @property (strong, nonatomic) IBOutlet UILabel *firstNameLabel; @property (strong, nonatomic) IBOutlet UILabel *firstStepLabel; @property (strong, nonatomic) IBOutlet UIView *secondView; @property (strong, nonatomic) IBOutlet UIImageView *secondDeviceImageView; @property (strong, nonatomic) IBOutlet UILabel *secondNameLabel; @property (strong, nonatomic) IBOutlet UILabel *secondStepLabel; @property (strong, nonatomic) IBOutlet UIView *thirdView; @property (strong, nonatomic) IBOutlet UIImageView *thirdDeviceImageView; @property (strong, nonatomic) IBOutlet UILabel *thirdNameLabel; @property (strong, nonatomic) IBOutlet UILabel *thirdStepLabel; + (instancetype)viewFirstXib; -(void)setDataWithListHead:(NSArray*)stepArr; @end