You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
1.1 KiB
49 lines
1.1 KiB
// |
|
// RankingListHeadView.h |
|
// tongxin |
|
// |
|
// Created by WeiChaoZheng on 2018/8/24. |
|
// Copyright © 2018年 xTT. All rights reserved. |
|
// |
|
|
|
#import <UIKit/UIKit.h> |
|
@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<Step*>*)stepArr; |
|
|
|
|
|
|
|
@end
|
|
|