// // KBChatPanelView.h // CustomKeyboard // #import @class KBChatPanelView, KBChatMessage; NS_ASSUME_NONNULL_BEGIN @protocol KBChatPanelViewDelegate @optional - (void)chatPanelView:(KBChatPanelView *)view didSendText:(NSString *)text; - (void)chatPanelView:(KBChatPanelView *)view didTapMessage:(KBChatMessage *)message; - (void)chatPanelViewDidTapClose:(KBChatPanelView *)view; @end @interface KBChatPanelView : UIView @property (nonatomic, weak) id delegate; @property (nonatomic, strong, readonly) UITableView *tableView; //- (void)kb_setBackgroundImage:(nullable UIImage *)image; - (void)kb_reloadWithMessages:(NSArray *)messages; @end NS_ASSUME_NONNULL_END