33 lines
824 B
C
33 lines
824 B
C
|
|
//
|
||
|
|
// QXRoomRankSubView.h
|
||
|
|
// QXLive
|
||
|
|
//
|
||
|
|
// Created by 启星 on 2025/6/9.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import <UIKit/UIKit.h>
|
||
|
|
#import "JXCategoryView.h"
|
||
|
|
#import "QXRoomModel.h"
|
||
|
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
|
||
|
|
@interface QXRoomRankSubView : UIView<JXCategoryListContentViewDelegate>
|
||
|
|
@property (nonatomic,strong)NSString*roomId;
|
||
|
|
@property (nonatomic,strong)NSString*type;
|
||
|
|
@end
|
||
|
|
|
||
|
|
|
||
|
|
@interface QXRoomRankTopThreeView :UIView
|
||
|
|
@property (nonatomic,strong)UIImageView *headerImageView;
|
||
|
|
@property (nonatomic,strong)UIImageView *borderImageView;
|
||
|
|
@property (nonatomic,strong)UILabel *onlineLabel;
|
||
|
|
@property (nonatomic,strong)UILabel *nameLabel;
|
||
|
|
@property (nonatomic,strong)UIView *iconBgView;
|
||
|
|
|
||
|
|
@property (nonatomic,strong)UIButton *rankBtn;
|
||
|
|
|
||
|
|
@property (nonatomic,assign)NSInteger number;
|
||
|
|
|
||
|
|
@property (nonatomic,strong)QXRoomOnlineList*md;
|
||
|
|
@end
|
||
|
|
NS_ASSUME_NONNULL_END
|