This commit is contained in:
2026-01-28 12:04:31 +08:00
parent 3fd7d2af2e
commit 51b744ecd7
5 changed files with 199 additions and 125 deletions

View File

@@ -6,17 +6,23 @@
//
#import <UIKit/UIKit.h>
#import <LSTPopView/LSTPopView.h>
NS_ASSUME_NONNULL_BEGIN
/// 抖音风格评论视图
@interface KBAICommentView : UIView
/// 加载评论数据(从本地 JSON 文件)
/// AI 陪聊角色 ID
@property(nonatomic, assign) NSInteger companionId;
/// 加载评论数据(从网络)
- (void)loadComments;
/// 评论总数
@property(nonatomic, readonly) NSInteger totalCommentCount;
@property(nonatomic, weak) LSTPopView *popView
;
@end