123456789101112131415161718192021 |
- //
- // VideoPlayViewController.h
- // jiaPei
- //
- // Created by 张嵘 on 2018/10/18.
- // Copyright © 2018 JCZ. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface VideoPlayViewController : UIViewController
- @property (strong, nonatomic) IBOutlet UIView *playView;
- @property (weak, nonatomic) IBOutlet UITableView *tableView;
- @property (strong, nonatomic) ZFPlayerController *player;
- @property (nonatomic, strong) ZFPlayerControlView *controlView;
- @property (weak, nonatomic) IBOutlet UIImageView *containerView;
- @property (weak, nonatomic) IBOutlet UIButton *playBtn;
- @property (nonatomic, strong) NSArray <NSURL *>*assetURLs;
- @property (nonatomic, strong) RQDownloadModel *currentModel;
- @end
|