This commit is contained in:
2026-01-15 18:49:31 +08:00
parent 32c4138ae0
commit d479d1903b
7 changed files with 132 additions and 2 deletions

View File

@@ -12,6 +12,7 @@ NS_ASSUME_NONNULL_BEGIN
@optional
- (void)chatPanelView:(KBChatPanelView *)view didSendText:(NSString *)text;
- (void)chatPanelView:(KBChatPanelView *)view didTapMessage:(KBChatMessage *)message;
- (void)chatPanelViewDidTapClose:(KBChatPanelView *)view;
@end
@interface KBChatPanelView : UIView
@@ -20,6 +21,7 @@ NS_ASSUME_NONNULL_BEGIN
@property (nonatomic, strong, readonly) UITableView *tableView;
//- (void)kb_setBackgroundImage:(nullable UIImage *)image;
- (void)kb_reloadWithMessages:(NSArray<KBChatMessage *> *)messages;
@end