YBGoodPlayerCtrView.h 479 B

12345678910111213141516171819202122232425
  1. //
  2. // YBGoodPlayerCtrView.h
  3. // YBVideo
  4. //
  5. // Created by YB007 on 2022/6/24.
  6. // Copyright © 2022 cat. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import <ZFPlayer/ZFPlayer.h>
  10. NS_ASSUME_NONNULL_BEGIN
  11. typedef void (^PlayerCtrBlock)(void);
  12. @interface YBGoodPlayerCtrView : UIView <ZFPlayerMediaControl>
  13. @property(nonatomic,copy)PlayerCtrBlock ctrEvent;
  14. - (void)showCoverViewWithUrl:(NSString *)coverUrl;
  15. -(void)ctrVideoPlay:(BOOL)isPlay;
  16. @end
  17. NS_ASSUME_NONNULL_END