// // KBChatMessageCell.h // CustomKeyboard // #import @class KBChatMessage; @class KBChatMessageCell; NS_ASSUME_NONNULL_BEGIN @protocol KBChatMessageCellDelegate @optional /// 点击语音播放按钮 - (void)chatMessageCell:(KBChatMessageCell *)cell didTapVoiceButtonForMessage:(KBChatMessage *)message; @end @interface KBChatMessageCell : UITableViewCell @property (nonatomic, weak) id delegate; - (void)kb_configureWithMessage:(KBChatMessage *)message; /// 更新语音播放状态 - (void)kb_updateVoicePlayingState:(BOOL)isPlaying; /// 显示语音加载动画 - (void)kb_showVoiceLoadingAnimation; /// 隐藏语音加载动画 - (void)kb_hideVoiceLoadingAnimation; /// 停止打字机效果 - (void)kb_stopTypewriterEffect; @end NS_ASSUME_NONNULL_END