43 lines
1.2 KiB
Objective-C
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
|