| 123456789101112131415161718192021222324252627282930313233343536373839 |
- //
- // JXCommentViewController.h
- // AICity
- //
- // Created by TogetherWatch on 2025-10-20.
- // Feature: 010-ui-ios - 评论弹窗
- // 对标Android: CommentDialog.kt
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- /**
- * 评论弹窗
- *
- * 功能:
- * - 显示评论列表
- * - 支持提交评论
- * - 支持点赞评论
- * - 支持回复评论
- * - 支持下拉刷新、上拉加载更多
- *
- * 对标Android: CommentDialog.kt (Compose UI)
- */
- @interface JXCommentViewController : UIViewController
- /**
- * 初始化方法
- * @param dramaId 短剧ID
- */
- - (instancetype)initWithDramaId:(NSString *)dramaId;
- @end
- NS_ASSUME_NONNULL_END
|