123456789101112131415161718192021222324 |
- //
- // PlayerViewController.h
- // Template
- //
- // Created by LStar on 2018/12/17.
- // Copyright © 2018 Future. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface PlayerViewController : UIViewController
- /**
- 本地的视频
- */
- @property (nonatomic,copy)NSString *localPath;
- /**
- 远端的视频
- */
- @property (nonatomic,copy)NSString *remotePath;
- @end
|