Files
fanyin-ios/QXLive/Mine(音域)/View/我的房间/QXMyCpRoomListCell.h
2025-08-12 14:27:12 +08:00

43 lines
1.2 KiB
Objective-C

//
// QXMyCpRoomListCell.h
// QXLive
//
// Created by 启星 on 2025/7/1.
//
#import <UIKit/UIKit.h>
#import "QXRoomListModel.h"
NS_ASSUME_NONNULL_BEGIN
@interface QXMyCpRoomListCell : 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 *timeLabel;
/// 收益金额
@property (weak, nonatomic) IBOutlet UILabel *moneyLabel;
@property (weak, nonatomic) IBOutlet UIButton *roomDetailBtn;
@property (weak, nonatomic) IBOutlet UIButton *roomRankBtn;
@property (weak, nonatomic) IBOutlet UIButton *rankValueBtn;
@property (weak, nonatomic) IBOutlet UIImageView *leftHeaderImageView;
@property (weak, nonatomic) IBOutlet UIImageView *rightHeaderImageView;
@property (weak, nonatomic) IBOutlet UILabel *relationLabel;
@property (nonatomic,strong)QXRoomListCpModel *cpModel;
/// 0 我创建的 1 我主持的
@property (nonatomic,assign)NSInteger type;
@end
NS_ASSUME_NONNULL_END