CSJPlayableVideoController.h 469 B

123456789101112131415161718192021222324
  1. //
  2. // CSJPlayableVideoController.h
  3. // CSJAdSDK
  4. //
  5. // Created by yujie on 2022/10/8.
  6. //
  7. #import <Foundation/Foundation.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface CSJPlayableVideoController : NSObject
  10. @property (nonatomic, assign) NSTimeInterval currentVideoPlayTime;
  11. @property (nonatomic, assign) BOOL mute;
  12. - (instancetype)initWithMaterial:(CSJMaterialMeta *)materialMeta;
  13. - (void)showInView:(UIView *)view;
  14. - (void)hide;
  15. - (void)reset;
  16. @end
  17. NS_ASSUME_NONNULL_END