JXDramaCell.h 755 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. //
  2. // JXDramaCell.h
  3. // AICity
  4. //
  5. // Created by TogetherWatch on 2025-10-13.
  6. // Feature: 003-ios-api-https - 剧星短剧平台API接入
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "JXDrama.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. /**
  12. * 剧星短剧Cell
  13. *
  14. * 显示内容:
  15. * - 短剧封面
  16. * - 标题
  17. * - 评分
  18. * - 播放量
  19. * - 付费标识
  20. */
  21. @interface JXDramaCell : UICollectionViewCell
  22. @property (nonatomic, strong) UIImageView *coverImageView;
  23. @property (nonatomic, strong) UILabel *titleLabel;
  24. @property (nonatomic, strong) UILabel *ratingLabel;
  25. @property (nonatomic, strong) UILabel *viewCountLabel;
  26. @property (nonatomic, strong) UIView *paidBadge;
  27. /**
  28. * 配置Cell数据
  29. */
  30. - (void)configureWithDrama:(JXDrama *)drama;
  31. @end
  32. NS_ASSUME_NONNULL_END