35 lines
1.1 KiB
C
35 lines
1.1 KiB
C
|
|
//
|
||
|
|
// QXMyRankView.h
|
||
|
|
// IsLandVoice
|
||
|
|
//
|
||
|
|
// Created by 启星 on 2025/3/4.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import <UIKit/UIKit.h>
|
||
|
|
#import "QXRankModel.h"
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
|
||
|
|
@interface QXMyRankView : UIView
|
||
|
|
@property (weak, nonatomic) IBOutlet UIImageView *headerImageView;
|
||
|
|
@property (weak, nonatomic) IBOutlet UILabel *nickNameLabel;
|
||
|
|
@property (weak, nonatomic) IBOutlet UILabel *valueLabel;
|
||
|
|
@property (weak, nonatomic) IBOutlet UILabel *rankResultLabel;
|
||
|
|
@property (weak, nonatomic) IBOutlet UILabel *needLabel;
|
||
|
|
@property (weak, nonatomic) IBOutlet UIImageView *valueBGImageView;
|
||
|
|
|
||
|
|
|
||
|
|
@property (weak, nonatomic) IBOutlet UIImageView *headerImageView1;
|
||
|
|
@property (weak, nonatomic) IBOutlet UIImageView *headerImageView2;
|
||
|
|
@property (weak, nonatomic) IBOutlet UILabel *allNickNameLabel;
|
||
|
|
@property (weak, nonatomic) IBOutlet UIImageView *headerImageViewBG;
|
||
|
|
@property(nonatomic,assign)BOOL isCP;
|
||
|
|
|
||
|
|
@property (nonatomic,strong)QXMyRankModel *model;
|
||
|
|
@property (nonatomic,strong)QXMyRankModel *roomModel;
|
||
|
|
@property (nonatomic,strong)QXMyRankModel *guildModel;
|
||
|
|
@property (nonatomic,strong)QXMyRankModel *cpModel;
|
||
|
|
@end
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_END
|