SJIJKMediaPlayerLayerView.h 560 B

123456789101112131415161718192021222324
  1. //
  2. // SJIJKMediaPlayerLayerView.h
  3. // Pods
  4. //
  5. // Created by BlueDancer on 2020/2/19.
  6. //
  7. #import <UIKit/UIKit.h>
  8. #import "SJMediaPlaybackController.h"
  9. #import "SJIJKMediaPlayer.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface SJIJKMediaPlayerLayerView : UIView<SJMediaPlayerView>
  12. - (instancetype)initWithPlayer:(SJIJKMediaPlayer *)player;
  13. @property (nonatomic, strong, readonly) SJIJKMediaPlayer *player;
  14. @property (nonatomic) SJVideoGravity videoGravity;
  15. @property (nonatomic, readonly, getter=isReadyForDisplay) BOOL readyForDisplay;
  16. @end
  17. NS_ASSUME_NONNULL_END