JXCommentViewController.h 648 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. //
  2. // JXCommentViewController.h
  3. // AICity
  4. //
  5. // Created by TogetherWatch on 2025-10-20.
  6. // Feature: 010-ui-ios - 评论弹窗
  7. // 对标Android: CommentDialog.kt
  8. //
  9. #import <UIKit/UIKit.h>
  10. NS_ASSUME_NONNULL_BEGIN
  11. /**
  12. * 评论弹窗
  13. *
  14. * 功能:
  15. * - 显示评论列表
  16. * - 支持提交评论
  17. * - 支持点赞评论
  18. * - 支持回复评论
  19. * - 支持下拉刷新、上拉加载更多
  20. *
  21. * 对标Android: CommentDialog.kt (Compose UI)
  22. */
  23. @interface JXCommentViewController : UIViewController
  24. /**
  25. * 初始化方法
  26. * @param dramaId 短剧ID
  27. */
  28. - (instancetype)initWithDramaId:(NSString *)dramaId;
  29. @end
  30. NS_ASSUME_NONNULL_END