| 123456789101112131415161718192021222324252627 |
- //
- // ZFADControlView.h
- // ZFPlayer_Example
- //
- // Created by 紫枫 on 2019/5/15.
- // Copyright © 2019 紫枫. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import <ZFPlayer/ZFPlayerMediaControl.h>
- // Temporarily disable third-party advertising module
- #if 0
- NS_ASSUME_NONNULL_BEGIN
- @interface ZFADControlView : UIView <ZFPlayerMediaControl>
- @property (nonatomic, copy) void(^skipCallback)(void);
- @property (nonatomic, copy) void(^fullScreenCallback)(void);
- @end
- NS_ASSUME_NONNULL_END
- #endif
|