Files
midi_ios/QXLive/HomePage(声播)/View/房间/设置/QXDirectListCell.h
2025-08-14 10:07:49 +08:00

27 lines
823 B
Objective-C

//
// 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