Files
featherVoice/QXLive/Room(房间)/View/排行榜/QXRoomRankSubView.h

37 lines
972 B
C
Raw Normal View History

2025-08-08 10:49:36 +08:00
//
// QXRoomRankSubView.h
// QXLive
//
// Created by 启星 on 2025/6/9.
//
#import <UIKit/UIKit.h>
#import "JXCategoryView.h"
#import "QXRoomModel.h"
2025-10-20 09:43:10 +08:00
#import "QXRoomSeatDelegate.h"
2025-08-08 10:49:36 +08:00
NS_ASSUME_NONNULL_BEGIN
@interface QXRoomRankSubView : UIView<JXCategoryListContentViewDelegate>
@property (nonatomic,strong)NSString*roomId;
@property (nonatomic,strong)NSString*type;
2025-10-20 09:43:10 +08:00
@property (nonatomic,weak)id<QXRoomSeatDelegate>delegate;
2025-08-08 10:49:36 +08:00
@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;
2025-10-20 09:43:10 +08:00
@property (nonatomic,weak)id<QXRoomSeatDelegate>delegate;
2025-08-08 10:49:36 +08:00
@end
NS_ASSUME_NONNULL_END