31 lines
739 B
Objective-C
31 lines
739 B
Objective-C
//
|
|
// AIChatTextTableViewCell.h
|
|
// ProductApp
|
|
//
|
|
// Created by 工作 on 2024/10/14.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "AIChatModel.h"
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
typedef void(^AIChatTextTableViewCellBack)(AIChatModel *model);
|
|
typedef void(^AIChatTextTableViewCellDarwBack)(BOOL isDrawFinish);
|
|
|
|
typedef void(^AIChatTextTableViewCellAudioBack)(AIChatModel *model);
|
|
|
|
@interface AIChatTextTableViewCell : UITableViewCell
|
|
///
|
|
@property (nonatomic , strong) AIChatModel *model;
|
|
///
|
|
@property (nonatomic , strong) AIChatTextTableViewCellBack backValue;
|
|
|
|
@property (nonatomic , strong) AIChatTextTableViewCellDarwBack backDrawValue;
|
|
|
|
|
|
@property (nonatomic , strong) AIChatTextTableViewCellAudioBack backAudioValue;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|