VideoPlayerView.h 509 B

123456789101112131415161718
  1. //
  2. // VideoPlayerView.h
  3. // 扩展Demo
  4. //
  5. // Created by Hello on 2018/4/19.
  6. // Copyright © 2018年 Hello. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import <AVFoundation/AVFoundation.h>
  10. @interface VideoPlayerView : UIView
  11. @property (strong, nonatomic)AVPlayer *videoPlayer;//播放器
  12. @property (strong, nonatomic)AVPlayerItem *playerItem;//播放单元
  13. @property (strong, nonatomic)AVPlayerLayer *playerLayer;//播放界面(layer)
  14. +(instancetype)sharedVideoViewWithFrame:(CGRect)frame;
  15. @end