Files
featherVoice/QXLive/Room(房间)/View/设置/QXDirectListCell.h

27 lines
823 B
C
Raw Normal View History

2025-08-08 10:49:36 +08:00
//
// QXDirectListCell.h
// IsLandVoice
//
// Created by 启星 on 2025/3/6.
//
#import <UIKit/UIKit.h>
#import "QXRoomModel.h"
#import "QXDirectSetScaleView.h"
#import "QXDirectDelegate.h"
NS_ASSUME_NONNULL_BEGIN
@interface QXDirectListCell : UITableViewCell<QXDirectDelegate>
@property (weak, nonatomic) IBOutlet UIView *bgView;
@property (weak, nonatomic) IBOutlet UIImageView *headerImageView;
@property (weak, nonatomic) IBOutlet UILabel *nameLabel;
@property (weak, nonatomic) IBOutlet UILabel *scaleLabel;
@property (weak, nonatomic) IBOutlet UILabel *priceLabel;
@property (strong, nonatomic) QXRoomOnlineList *model;
@property (strong, nonatomic) NSString *roomId;
@property (weak, nonatomic)id<QXDirectDelegate>delegate;
+(instancetype)cellWithTableView:(UITableView *)tableView;
@end
NS_ASSUME_NONNULL_END