46 lines
1.3 KiB
Objective-C
46 lines
1.3 KiB
Objective-C
//
|
|
// QXMyRoomListCell.h
|
|
// IsLandVoice
|
|
//
|
|
// Created by 启星 on 2025/4/12.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "QXRoomListModel.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface QXMyRoomListCell : UICollectionViewCell
|
|
/// 背景图
|
|
@property (weak, nonatomic) IBOutlet UIImageView *bgImageView;
|
|
/// 头像
|
|
@property (weak, nonatomic) IBOutlet UIImageView *headerImageView;
|
|
/// 房间类型
|
|
@property (weak, nonatomic) IBOutlet UIImageView *typeImageView;
|
|
/// 昵称
|
|
@property (weak, nonatomic) IBOutlet UILabel *nickNameLabel;
|
|
/// ID
|
|
@property (weak, nonatomic) IBOutlet UILabel *IDLabel;
|
|
/// 关注数量
|
|
@property (weak, nonatomic) IBOutlet UILabel *followLabel;
|
|
/// 在线人数
|
|
@property (weak, nonatomic) IBOutlet UILabel *onlineLabel;
|
|
/// 访问量
|
|
@property (weak, nonatomic) IBOutlet UILabel *comeCountLabel;
|
|
/// 今日收益
|
|
@property (weak, nonatomic) IBOutlet UILabel *todayLabel;
|
|
/// 收益金额
|
|
@property (weak, nonatomic) IBOutlet UILabel *moneyLabel;
|
|
@property (weak, nonatomic) IBOutlet UIButton *roomDetailBtn;
|
|
|
|
@property (weak, nonatomic) IBOutlet UIButton *roomSubsidyBtn;
|
|
@property (nonatomic,assign)NSInteger bgImageCount;
|
|
@property (weak, nonatomic) IBOutlet UIImageView *roomWaitImageView;
|
|
|
|
@property (nonatomic,strong)QXRoomListModel *model;
|
|
/// 0 我创建的 1 我主持的
|
|
@property (nonatomic,assign)NSInteger type;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|