PlayerViewController.h 367 B

123456789101112131415161718192021222324
  1. //
  2. // PlayerViewController.h
  3. // Template
  4. //
  5. // Created by LStar on 2018/12/17.
  6. // Copyright © 2018 Future. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface PlayerViewController : UIViewController
  10. /**
  11. 本地的视频
  12. */
  13. @property (nonatomic,copy)NSString *localPath;
  14. /**
  15. 远端的视频
  16. */
  17. @property (nonatomic,copy)NSString *remotePath;
  18. @end