25 lines
384 B
Objective-C
25 lines
384 B
Objective-C
//
|
|
// KBPersonaChatCell.h
|
|
// keyBoard
|
|
//
|
|
// Created by Kiro on 2026/1/26.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "KBPersonaModel.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
/// 人设聊天 Cell
|
|
@interface KBPersonaChatCell : UICollectionViewCell
|
|
|
|
/// 人设数据
|
|
@property (nonatomic, strong) KBPersonaModel *persona;
|
|
|
|
/// 预加载数据
|
|
- (void)preloadDataIfNeeded;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|