24 lines
373 B
Objective-C
24 lines
373 B
Objective-C
//
|
|
// KBAICommentView.h
|
|
// keyBoard
|
|
//
|
|
// Created by Mac on 2026/1/16.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
/// 抖音风格评论视图
|
|
@interface KBAICommentView : UIView
|
|
|
|
/// 加载评论数据(从本地 JSON 文件)
|
|
- (void)loadComments;
|
|
|
|
/// 评论总数
|
|
@property(nonatomic, readonly) NSInteger totalCommentCount;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|