VideoPlayerView.m 534 B

1234567891011121314151617181920212223
  1. //
  2. // VideoPlayerView.m
  3. // 扩展Demo
  4. //
  5. // Created by Hello on 2018/4/19.
  6. // Copyright © 2018年 Hello. All rights reserved.
  7. //
  8. #import "VideoPlayerView.h"
  9. static VideoPlayerView *playerView = nil;
  10. @implementation VideoPlayerView
  11. +(instancetype)sharedVideoViewWithFrame:(CGRect)frame{
  12. static dispatch_once_t onceToken;
  13. dispatch_once(&onceToken, ^{
  14. playerView = [[VideoPlayerView alloc]initWithFrame:frame];
  15. playerView.backgroundColor = [UIColor clearColor];
  16. });
  17. return playerView;
  18. }
  19. @end