20 lines
456 B
Objective-C
20 lines
456 B
Objective-C
//
|
|
// QXIntimateCpCell.h
|
|
// QXLive
|
|
//
|
|
// Created by 启星 on 2025/11/20.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "QXUserCpCardView.h"
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface QXIntimateCpCell : UITableViewCell
|
|
@property (nonatomic,strong)QXUserCpInfoModel *model;
|
|
@property (nonatomic,strong)NSString *userId;
|
|
@property (nonatomic,weak)id<QXUserCpCardViewDelegate>delegate;
|
|
+(instancetype)cellWithTableView:(UITableView *)tableView;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|