ZFPlayerControlView+RQExtension.h 599 B

123456789101112131415161718192021222324
  1. //
  2. // ZFPlayerControlView+RQExtension.h
  3. // JSJP
  4. //
  5. // Created by 张嵘 on 2021/11/26.
  6. //
  7. #import "ZFPlayerControlView.h"
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface ZFPlayerControlView (RQExtension)
  10. /**
  11. 升级标题、封面、默认占位图、全屏模式
  12. @param title 视频的标题
  13. @param coverUrl 视频的封面
  14. @param placeholder 指定封面的placeholder
  15. @param fullScreenMode 全屏模式
  16. */
  17. - (void)updateTitle:(NSString *)title coverURLString:(NSString *)coverUrl placeholderImage:(UIImage *)placeholder fullScreenMode:(ZFFullScreenMode)fullScreenMode;
  18. @end
  19. NS_ASSUME_NONNULL_END