Files
keyboard/keyBoard/Class/AiTalk/V/KBAICommentFooterView.h
2026-01-16 15:55:08 +08:00

26 lines
481 B
Objective-C

//
// KBAICommentFooterView.h
// keyBoard
//
// Created by Mac on 2026/1/16.
//
#import <UIKit/UIKit.h>
@class KBAICommentModel;
NS_ASSUME_NONNULL_BEGIN
/// Section Footer - 展开/收起/加载更多按钮
@interface KBAICommentFooterView : UITableViewHeaderFooterView
/// 配置 Footer 数据
- (void)configureWithComment:(KBAICommentModel *)comment;
/// 操作按钮点击回调
@property(nonatomic, copy, nullable) void (^onAction)(void);
@end
NS_ASSUME_NONNULL_END