| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220 |
- //
- // ZFNotAutoPlayViewController.m
- // ZFPlayer
- //
- // Created by 任子丰 on 2018/4/1.
- // Copyright © 2018年 紫枫. All rights reserved.
- //
- #import "ZFNotAutoPlayViewController.h"
- #import <ZFPlayer/ZFAVPlayerManager.h>
- #import <ZFPlayer/ZFPlayerControlView.h>
- #import <ZFPlayer/ZFIJKPlayerManager.h>
- #import "ZFPlayerDetailViewController.h"
- #import <ZFPlayer/UIView+ZFFrame.h>
- #import <ZFPlayer/ZFPlayerConst.h>
- #import "ZFTableViewCell.h"
- #import "ZFTableData.h"
- static NSString *kIdentifier = @"kIdentifier";
- @interface ZFNotAutoPlayViewController () <UITableViewDelegate,UITableViewDataSource,ZFTableViewCellDelegate>
- @property (nonatomic, strong) UITableView *tableView;
- @property (nonatomic, strong) ZFPlayerController *player;
- @property (nonatomic, strong) ZFPlayerControlView *controlView;
- @property (nonatomic, strong) NSMutableArray *dataSource;
- @end
- @implementation ZFNotAutoPlayViewController
- - (void)viewDidLoad {
- [super viewDidLoad];
- self.view.backgroundColor = [UIColor whiteColor];
- [self.view addSubview:self.tableView];
- [self requestData];
- /// playerManager
- ZFAVPlayerManager *playerManager = [[ZFAVPlayerManager alloc] init];
- // ZFIJKPlayerManager *playerManager = [[ZFIJKPlayerManager alloc] init];
-
- /// player的tag值必须在cell里设置
- self.player = [ZFPlayerController playerWithScrollView:self.tableView playerManager:playerManager containerViewTag:kPlayerViewTag];
- self.player.controlView = self.controlView;
- self.player.shouldAutoPlay = NO;
- /// 1.0是完全消失的时候
- self.player.playerDisapperaPercent = 1.0;
- @zf_weakify(self)
- self.player.playerDidToEnd = ^(id _Nonnull asset) {
- @zf_strongify(self)
- [self.player stopCurrentPlayingCell];
- };
- }
- - (void)viewWillAppear:(BOOL)animated {
- [super viewWillAppear:animated];
- self.player.viewControllerDisappear = NO;
- }
- - (void)viewWillDisappear:(BOOL)animated {
- [super viewWillDisappear:animated];
- self.player.viewControllerDisappear = YES;
- }
- - (void)viewWillLayoutSubviews {
- [super viewWillLayoutSubviews];
- CGFloat y = CGRectGetMaxY(self.navigationController.navigationBar.frame);
- CGFloat h = CGRectGetMaxY(self.view.frame);
- self.tableView.frame = CGRectMake(0, y, self.view.frame.size.width, h-y);
- }
- - (void)requestData {
- NSString *path = [[NSBundle mainBundle] pathForResource:@"data" ofType:@"json"];
- NSData *data = [NSData dataWithContentsOfFile:path];
- NSDictionary *rootDict = [NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingAllowFragments error:nil];
-
- self.dataSource = @[].mutableCopy;
- NSArray *videoList = [rootDict objectForKey:@"list"];
- for (NSDictionary *dataDic in videoList) {
- ZFTableData *data = [[ZFTableData alloc] init];
- [data setValuesForKeysWithDictionary:dataDic];
- ZFTableViewCellLayout *layout = [[ZFTableViewCellLayout alloc] initWithData:data];
- [self.dataSource addObject:layout];
- }
- }
- - (BOOL)shouldAutorotate {
- return NO;
- }
- - (UIInterfaceOrientationMask)supportedInterfaceOrientations {
- return UIInterfaceOrientationMaskPortrait;
- }
- - (UIStatusBarStyle)preferredStatusBarStyle {
- return UIStatusBarStyleDefault;
- }
- - (BOOL)prefersStatusBarHidden {
- return NO;
- }
- #pragma mark - UIScrollViewDelegate 列表播放必须实现
- - (void)scrollViewDidEndDecelerating:(UIScrollView *)scrollView {
- [scrollView zf_scrollViewDidEndDecelerating];
- }
- - (void)scrollViewDidEndDragging:(UIScrollView *)scrollView willDecelerate:(BOOL)decelerate {
- [scrollView zf_scrollViewDidEndDraggingWillDecelerate:decelerate];
- }
- - (void)scrollViewDidScrollToTop:(UIScrollView *)scrollView {
- [scrollView zf_scrollViewDidScrollToTop];
- }
- - (void)scrollViewDidScroll:(UIScrollView *)scrollView {
- [scrollView zf_scrollViewDidScroll];
- }
- - (void)scrollViewWillBeginDragging:(UIScrollView *)scrollView {
- [scrollView zf_scrollViewWillBeginDragging];
- }
- #pragma mark - UITableViewDataSource
- - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
- return self.dataSource.count;
- }
- - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
- ZFTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:kIdentifier];
- [cell setDelegate:self withIndexPath:indexPath];
- cell.layout = self.dataSource[indexPath.row];
- [cell setNormalMode];
- return cell;
- }
- - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
- /// 如果正在播放的index和当前点击的index不同,则停止当前播放的index
- if (self.player.playingIndexPath != indexPath) {
- [self.player stopCurrentPlayingCell];
- }
- /// 如果没有播放,则点击进详情页会自动播放
- if (!self.player.currentPlayerManager.isPlaying) {
- [self playTheVideoAtIndexPath:indexPath];
- }
- /// 到详情页
- ZFPlayerDetailViewController *detailVC = [ZFPlayerDetailViewController new];
- detailVC.player = self.player;
- /// 详情页返回的回调
- detailVC.detailVCPopCallback = ^{
- if (self.player.currentPlayerManager.playState == ZFPlayerPlayStatePlayStopped) {
- [self.player stopCurrentPlayingCell];
- } else {
- [self.player addPlayerViewToCell];
- }
- };
- /// 详情页点击播放的回调
- detailVC.detailVCPlayCallback = ^{
- [self zf_playTheVideoAtIndexPath:indexPath];
- };
- [self.navigationController pushViewController:detailVC animated:YES];
- }
- - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
- ZFTableViewCellLayout *layout = self.dataSource[indexPath.row];
- return layout.height;
- }
- #pragma mark - ZFTableViewCellDelegate
- - (void)zf_playTheVideoAtIndexPath:(NSIndexPath *)indexPath {
- [self playTheVideoAtIndexPath:indexPath];
- }
- #pragma mark - private method
- /// play the video
- - (void)playTheVideoAtIndexPath:(NSIndexPath *)indexPath {
- ZFTableViewCellLayout *layout = self.dataSource[indexPath.row];
- [self.player playTheIndexPath:indexPath assetURL:[NSURL URLWithString:layout.data.video_url]];
- [self.controlView showTitle:layout.data.title
- coverURLString:layout.data.thumbnail_url
- fullScreenMode:layout.isVerticalVideo?ZFFullScreenModePortrait:ZFFullScreenModeLandscape];
- }
- #pragma mark - getter
- - (UITableView *)tableView {
- if (!_tableView) {
- _tableView = [[UITableView alloc] initWithFrame:CGRectZero style:UITableViewStylePlain];
- [_tableView registerClass:[ZFTableViewCell class] forCellReuseIdentifier:kIdentifier];
- _tableView.delegate = self;
- _tableView.dataSource = self;
- if (@available(iOS 11.0, *)) {
- _tableView.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever;
- } else {
- self.automaticallyAdjustsScrollViewInsets = NO;
- }
- _tableView.estimatedRowHeight = 0;
- _tableView.estimatedSectionFooterHeight = 0;
- _tableView.estimatedSectionHeaderHeight = 0;
- }
- return _tableView;
- }
- - (ZFPlayerControlView *)controlView {
- if (!_controlView) {
- _controlView = [ZFPlayerControlView new];
- _controlView.prepareShowLoading = YES;
- _controlView.prepareShowControlView = YES;
- _controlView.showCustomStatusBar = YES;
- }
- return _controlView;
- }
- @end
|