27 lines
823 B
Objective-C
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
|