分类移动文件

This commit is contained in:
2026-01-29 13:44:52 +08:00
parent 4392296616
commit 25fbe9b64e
25 changed files with 72 additions and 30 deletions

View File

@@ -0,0 +1,29 @@
//
// KBAICommentView.h
// keyBoard
//
// Created by Mac on 2026/1/16.
//
#import <UIKit/UIKit.h>
#import <LSTPopView/LSTPopView.h>
NS_ASSUME_NONNULL_BEGIN
/// 抖音风格评论视图
@interface KBAICommentView : UIView
/// AI 陪聊角色 ID
@property(nonatomic, assign) NSInteger companionId;
/// 加载评论数据(从网络)
- (void)loadComments;
/// 评论总数
@property(nonatomic, readonly) NSInteger totalCommentCount;
@property(nonatomic, weak) LSTPopView *popView
;
@end
NS_ASSUME_NONNULL_END