23 lines
354 B
C
23 lines
354 B
C
|
|
//
|
|||
|
|
// KBChatUserMessageCell.h
|
|||
|
|
// keyBoard
|
|||
|
|
//
|
|||
|
|
// Created by Kiro on 2026/1/23.
|
|||
|
|
//
|
|||
|
|
|
|||
|
|
#import <UIKit/UIKit.h>
|
|||
|
|
|
|||
|
|
@class KBAiChatMessage;
|
|||
|
|
|
|||
|
|
NS_ASSUME_NONNULL_BEGIN
|
|||
|
|
|
|||
|
|
/// 用户消息 Cell(右侧气泡)
|
|||
|
|
@interface KBChatUserMessageCell : UITableViewCell
|
|||
|
|
|
|||
|
|
/// 配置 Cell
|
|||
|
|
- (void)configureWithMessage:(KBAiChatMessage *)message;
|
|||
|
|
|
|||
|
|
@end
|
|||
|
|
|
|||
|
|
NS_ASSUME_NONNULL_END
|