VideoPlayViewController.h 702 B

123456789101112131415161718192021
  1. //
  2. // VideoPlayViewController.h
  3. // jiaPei
  4. //
  5. // Created by 张嵘 on 2018/10/18.
  6. // Copyright © 2018 JCZ. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface VideoPlayViewController : UIViewController
  10. @property (strong, nonatomic) IBOutlet UIView *playView;
  11. @property (weak, nonatomic) IBOutlet UITableView *tableView;
  12. @property (strong, nonatomic) ZFPlayerController *player;
  13. @property (nonatomic, strong) ZFPlayerControlView *controlView;
  14. @property (weak, nonatomic) IBOutlet UIImageView *containerView;
  15. @property (weak, nonatomic) IBOutlet UIButton *playBtn;
  16. @property (nonatomic, strong) NSArray <NSURL *>*assetURLs;
  17. @property (nonatomic, strong) RQDownloadModel *currentModel;
  18. @end