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