| 12345678910111213141516171819202122232425262728293031323334 |
- //
- // JXPlayerOverlay.h
- // AICity
- //
- // Created by TogetherWatch on 2025-10-13.
- // Feature: 003-ios-api-https - 剧星短剧平台API接入
- //
- #import <UIKit/UIKit.h>
- #import "JXDrama.h"
- #import "JXEpisode.h"
- #import "JXInteraction.h"
- NS_ASSUME_NONNULL_BEGIN
- /**
- * 播放器覆盖层视图
- * 包含所有UI元素:顶部横幅、右侧按钮、底部信息、底部导航
- */
- @interface JXPlayerOverlay : UIView
- // 配置数据
- - (void)configureWithDrama:(JXDrama *)drama
- episode:(JXEpisode *)episode
- interaction:(JXInteraction *)interaction;
- // 显示/隐藏UI
- - (void)showUI;
- - (void)hideUI;
- @end
- NS_ASSUME_NONNULL_END
|