38 lines
1.2 KiB
Objective-C
38 lines
1.2 KiB
Objective-C
//
|
|
// QXRankTopThreeView.h
|
|
// IsLandVoice
|
|
//
|
|
// Created by 启星 on 2025/3/4.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "QXRankModel.h"
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface QXRankTopThreeView : UIView
|
|
@property (weak, nonatomic) IBOutlet UIImageView *firstHeaderImage;
|
|
@property (weak, nonatomic) IBOutlet UILabel *firstNameLabel;
|
|
@property (weak, nonatomic) IBOutlet UILabel *firstIDLabel;
|
|
@property (weak, nonatomic) IBOutlet UILabel *firstRankValueLabel;
|
|
|
|
@property (weak, nonatomic) IBOutlet UIImageView *secondHeaderImage;
|
|
@property (weak, nonatomic) IBOutlet UILabel *secondNameLabel;
|
|
@property (weak, nonatomic) IBOutlet UILabel *secondIDLabel;
|
|
@property (weak, nonatomic) IBOutlet UILabel *secondRankValueLabel;
|
|
|
|
@property (weak, nonatomic) IBOutlet UIImageView *thirdHeaderImage;
|
|
@property (weak, nonatomic) IBOutlet UILabel *thirdNameLabel;
|
|
@property (weak, nonatomic) IBOutlet UILabel *thirdIDLabel;
|
|
@property (weak, nonatomic) IBOutlet UILabel *thirdRankValueLabel;
|
|
|
|
@property (nonatomic,strong)NSArray<QXMyRankModel*>*list;
|
|
//
|
|
@property (nonatomic,strong)NSArray<QXMyRankModel*>*roomList;
|
|
|
|
@property (nonatomic,strong)NSArray<QXMyRankModel*>*guildList;
|
|
|
|
-(void)resetView;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|