| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- //
- // JXShortDramaViewController.h
- // AICity
- //
- // Created by TogetherWatch on 2025-10-20.
- // Feature: 010-ui-ios - 短剧垂直滑动播放页
- // 对标Android: ShortDramaFragment.kt
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- /**
- * 短剧垂直滑动播放页
- *
- * 功能:
- * - 垂直滑动播放短剧(类似抖音/快手)
- * - 支持点赞、收藏、评论、合集
- * - 自动播放/停止管理
- * - 支持下拉刷新、上拉加载更多
- *
- * 对标Android: ShortDramaFragment.kt
- * - ViewPager2垂直滑动 -> UICollectionView垂直分页
- * - ShortDramaSuperPlayerAdapter -> JXDramaCell
- * - ShortDramaViewModel -> 本地数据管理
- */
- @interface JXShortDramaViewController : UIViewController
- /**
- * 初始化方法
- * @param categoryId 分类ID(可选,nil表示全部)
- */
- - (instancetype)initWithCategoryId:(nullable NSString *)categoryId;
- @end
- NS_ASSUME_NONNULL_END
|