26 lines
481 B
Objective-C
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
|