| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- //
- // JXDramaCell.h
- // AICity
- //
- // Created by TogetherWatch on 2025-10-13.
- // Feature: 003-ios-api-https - 剧星短剧平台API接入
- //
- #import <UIKit/UIKit.h>
- #import "JXDrama.h"
- NS_ASSUME_NONNULL_BEGIN
- /**
- * 剧星短剧Cell
- *
- * 显示内容:
- * - 短剧封面
- * - 标题
- * - 评分
- * - 播放量
- * - 付费标识
- */
- @interface JXDramaCell : UICollectionViewCell
- @property (nonatomic, strong) UIImageView *coverImageView;
- @property (nonatomic, strong) UILabel *titleLabel;
- @property (nonatomic, strong) UILabel *ratingLabel;
- @property (nonatomic, strong) UILabel *viewCountLabel;
- @property (nonatomic, strong) UIView *paidBadge;
- /**
- * 配置Cell数据
- */
- - (void)configureWithDrama:(JXDrama *)drama;
- @end
- NS_ASSUME_NONNULL_END
|