ZFADControlView.h 507 B

123456789101112131415161718192021222324252627
  1. //
  2. // ZFADControlView.h
  3. // ZFPlayer_Example
  4. //
  5. // Created by 紫枫 on 2019/5/15.
  6. // Copyright © 2019 紫枫. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import <ZFPlayer/ZFPlayerMediaControl.h>
  10. // Temporarily disable third-party advertising module
  11. #if 0
  12. NS_ASSUME_NONNULL_BEGIN
  13. @interface ZFADControlView : UIView <ZFPlayerMediaControl>
  14. @property (nonatomic, copy) void(^skipCallback)(void);
  15. @property (nonatomic, copy) void(^fullScreenCallback)(void);
  16. @end
  17. NS_ASSUME_NONNULL_END
  18. #endif