123456789101112131415161718192021222324 |
- //
- // CSJPlayableVideoController.h
- // CSJAdSDK
- //
- // Created by yujie on 2022/10/8.
- //
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface CSJPlayableVideoController : NSObject
- @property (nonatomic, assign) NSTimeInterval currentVideoPlayTime;
- @property (nonatomic, assign) BOOL mute;
- - (instancetype)initWithMaterial:(CSJMaterialMeta *)materialMeta;
- - (void)showInView:(UIView *)view;
- - (void)hide;
- - (void)reset;
- @end
- NS_ASSUME_NONNULL_END
|