使用AVPlayer自定義支援全屏的播放器(四)

JmoVxia發表於2019-02-28
使用AVPlayer自定義支援全屏的播放器(四)

前言

前段時間封裝了一個視訊播放器使用AVPlayer自定義支援全屏的播放器(三),經過一段時間的測試,發現了許多bug,針對以前遺留的問題進行了修復和更新。

修復bug

主要修復了播放器頁面不支援旋轉引起全屏音量圖示未旋轉,進度條拖拽不靈敏,Masonry引起約束警告,網路不好銷燬播放器引起卡頓,工具條自動消失後需要點選兩次等bug。

1.旋轉後音量圖示不旋轉bug

開始使用的是旋轉播放器來實現全屏,實際頁面未旋轉,所以系統音量圖示方向不對,修改後利用頁面旋轉來實現全屏,這樣就不會引起系統音量圖示方向不對,具體如何使頁面支援旋轉,並且不影響其他頁面請看這裡iOS頁面旋轉詳解

2.進度條拖拽不靈敏

由於自定義了進度條的圖示,引起進度條拖拽不靈敏,這裡在自定義進度條內部重寫- (UIView *)hitTest:(CGPoint)point withEvent:(UIEvent *)event- (BOOL)pointInside:(CGPoint)point withEvent:(UIEvent *)event這兩個方法,增大響應的範圍。

程式碼
//檢查點選事件點選範圍是否能夠交給self處理
- (UIView *)hitTest:(CGPoint)point withEvent:(UIEvent *)event {
    //呼叫父類方法,找到能夠處理event的view
    UIView* result = [super hitTest:point withEvent:event];
    if (result != self) {
        /*如果這個view不是self,我們給slider擴充一下響應範圍,
         這裡的擴充範圍資料就可以自己設定了
         */
        if ((point.y >= -15) &&
            (point.y < (_lastBounds.size.height + SLIDER_Y_BOUND)) &&
            (point.x >= 0 && point.x < CGRectGetWidth(self.bounds))) {
            //如果在擴充的範圍類,就將event的處理權交給self
            result = self;
        }
    }
    //否則,返回能夠處理的view
    return result;
}
//檢查是點選事件的點是否在slider範圍內
- (BOOL)pointInside:(CGPoint)point withEvent:(UIEvent *)event {
    //呼叫父類判斷
    BOOL result = [super pointInside:point withEvent:event];
    if (!result) {
        //同理,如果不在slider範圍類,擴充響應範圍
        if ((point.x >= (_lastBounds.origin.x - SLIDER_X_BOUND)) && (point.x <= (_lastBounds.origin.x + _lastBounds.size.width + SLIDER_X_BOUND))
            && (point.y >= -SLIDER_Y_BOUND) && (point.y < (_lastBounds.size.height + SLIDER_Y_BOUND))) {
            //在擴充範圍內,返回yes
            result = YES;
        }
    }
    //否則返回父類的結果
    return result;
}
複製程式碼

新增功能

新增加了轉子動畫,增加拖拽後轉子銜接動畫,增加各類介面。

轉子動畫

利用CAShapeLayerUIBezierPath做了一個簡單的載入動畫。

程式碼
@interface AILoadingView ()<CAAnimationDelegate>

@property(nonatomic,strong)CAShapeLayer *loadingLayer;
/** 當前的index*/
@property(nonatomic,assign)NSInteger index;
/** 是否能用*/
@property(nonatomic,assign,getter=isEnable)BOOL enable;
@end
@implementation AILoadingView

- (instancetype)initWithFrame:(CGRect)frame
{
    self = [super initWithFrame:frame];
    if (self) {
        _index    = 0;
        _enable   = YES;
        _duration = 2.;
        [self createUI];
    }
    return self;
}
-(void)layoutSubviews {
    [super layoutSubviews];
    UIBezierPath *path      = [self cycleBezierPathIndex:_index];
    self.loadingLayer.path  = path.CGPath;
}

- (UIBezierPath*)cycleBezierPathIndex:(NSInteger)index {
    UIBezierPath *path = [UIBezierPath bezierPathWithArcCenter:CGPointMake(self.bounds.size.width * 0.5, self.bounds.size.height *0.5) radius:self.bounds.size.width * 0.5 startAngle:index * (M_PI* 2)/3  endAngle:index * (M_PI* 2)/3 + 2*M_PI * 4/3 clockwise:YES];
    return path;
}
- (void)createUI {
    self.loadingLayer             = [CAShapeLayer layer];
    self.loadingLayer.lineWidth   = 2.;
    self.loadingLayer.fillColor   = [UIColor clearColor].CGColor;
    self.loadingLayer.strokeColor = [UIColor blackColor].CGColor;
    [self.layer addSublayer:self.loadingLayer];
    self.loadingLayer.lineCap     = kCALineCapRound;
}
- (void)loadingAnimation {
    CABasicAnimation *strokeStartAnimation = [CABasicAnimation animationWithKeyPath:@"strokeStart"];
    strokeStartAnimation.fromValue         = @0;
    strokeStartAnimation.toValue           = @1.;
    strokeStartAnimation.timingFunction    = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaseOut];
    
    CABasicAnimation *strokeEndAnimation   = [CABasicAnimation animationWithKeyPath:@"strokeEnd"];
    strokeEndAnimation.fromValue           = @.0;
    strokeEndAnimation.toValue             = @1.;
    strokeEndAnimation.duration            = self.duration * 0.5;
    
    CAAnimationGroup *strokeAniamtionGroup = [CAAnimationGroup animation];
    strokeAniamtionGroup.duration          = self.duration;
    
    strokeAniamtionGroup.delegate          = self;
    strokeAniamtionGroup.animations        = @[strokeEndAnimation,strokeStartAnimation];
    [self.loadingLayer addAnimation:strokeAniamtionGroup forKey:@"strokeAniamtionGroup"];
}
#pragma mark -CAAnimationDelegate
-(void)animationDidStop:(CAAnimation *)anim finished:(BOOL)flag {
    if (!self.isEnable) {
        return;
    }
    _index++;
    self.loadingLayer.path = [self cycleBezierPathIndex:_index %3].CGPath;
    [self loadingAnimation];
}

#pragma mark -public
- (void)starAnimation {
    if (self.loadingLayer.animationKeys.count > 0) {
        return;
    }
    self.hidden = NO;
    self.enable = YES;
    [self loadingAnimation];
}
- (void)stopAnimation {
    self.hidden = YES;
    self.enable = NO;
    [self.loadingLayer removeAllAnimations];
}
- (void)setStrokeColor:(UIColor *)strokeColor {
    _strokeColor                   = strokeColor;
    self.loadingLayer.strokeColor  = strokeColor.CGColor;
}
複製程式碼

使用方法

使用cocoapods匯入,pod `CLPlayer`

1.普通頁面

支援通過Push和模態建立的頁面,無論頁面是否支援旋轉都相容。播放器預設全部頁面都只支援豎屏,如果使用後需要某個頁面支援其他方向,需要重寫下面幾個方法。

頁面支援其他方向程式碼
#pragma mark -- 需要頁面支援其他方向,需要重寫這三個方法,預設所有頁面只支援豎屏
// 是否支援自動旋轉螢幕
- (BOOL)shouldAutorotate {
    return YES;
}
// 支援哪些螢幕方向
- (UIInterfaceOrientationMask)supportedInterfaceOrientations {
    return UIInterfaceOrientationMaskAll;
}
// 預設的螢幕方向(當前ViewController必須是通過模態出來的UIViewController(模態帶導航的無效)方式展現出來的,才會呼叫這個方法)
- (UIInterfaceOrientation)preferredInterfaceOrientationForPresentation {
    return UIInterfaceOrientationPortrait;
}
複製程式碼
使用程式碼
    CLPlayerView *playerView = [[CLPlayerView alloc] initWithFrame:CGRectMake(0, 90, self.view.CLwidth, 300)];    
    [self.view addSubview:playerView];    
//    //重複播放,預設不播放
//    playerView.repeatPlay = YES;
//    //當前控制器是否支援旋轉,當前頁面支援旋轉的時候需要設定,告知播放器
//    playerView.isLandscape = YES;
//    //設定等比例全屏拉伸,多餘部分會被剪下
//    playerView.fillMode = ResizeAspectFill;
//    //設定進度條背景顏色
//    playerView.progressBackgroundColor = [UIColor purpleColor];
//    //設定進度條緩衝顏色
//    playerView.progressBufferColor = [UIColor redColor];
//    //設定進度條播放完成顏色
//    playerView.progressPlayFinishColor = [UIColor greenColor];
//    //全屏是否隱藏狀態列
//    playerView.fullStatusBarHidden = NO;
//    //是否靜音,預設NO
//    playerView.mute = YES;
//    //轉子顏色
//    playerView.strokeColor = [UIColor redColor];
    //視訊地址
    playerView.url = [NSURL URLWithString:@"http://baobab.wdjcdn.com/14587093851044544c.mp4"];
    //播放
    [playerView playVideo];
    //返回按鈕點選事件回撥
    [playerView backButton:^(UIButton *button) {
        NSLog(@"返回按鈕被點選");
        //查詢是否是全屏狀態
        NSLog(@"%d",playerView.isFullScreen);
    }];
    //播放完成回撥
    [playerView endPlay:^{
        //銷燬播放器
//        [playerView destroyPlayer];
//        playerView = nil;
        NSLog(@"播放完成");
    }];
複製程式碼

2.TableVIew使用程式碼

建立方式和普通頁面一樣,在建立的時候記錄播放器所在cell,在cell滑出當前TableView的時候對播放器進行銷燬。

播放器建立程式碼
#pragma mark - 點選播放代理
- (void)cl_tableViewCellPlayVideoWithCell:(CLTableViewCell *)cell{
    //記錄被點選的Cell
    _cell = cell;
    //銷燬播放器
    [_playerView destroyPlayer];
    CLPlayerView *playerView = [[CLPlayerView alloc] initWithFrame:CGRectMake(0, 0, cell.CLwidth, cell.CLheight)];
    _playerView = playerView;
    [cell.contentView addSubview:_playerView];
//    //重複播放,預設不播放
//    _playerView.repeatPlay = YES;
//    //當前控制器是否支援旋轉,當前頁面支援旋轉的時候需要設定,告知播放器
//    _playerView.isLandscape = YES;
//    //設定等比例全屏拉伸,多餘部分會被剪下
//    _playerView.fillMode = ResizeAspectFill;
//    //設定進度條背景顏色
//    _playerView.progressBackgroundColor = [UIColor purpleColor];
//    //設定進度條緩衝顏色
//    _playerView.progressBufferColor = [UIColor redColor];
//    //設定進度條播放完成顏色
//    _playerView.progressPlayFinishColor = [UIColor greenColor];
//    //全屏是否隱藏狀態列
//    _playerView.fullStatusBarHidden = NO;
//    //轉子顏色
//    _playerView.strokeColor = [UIColor redColor];
    //視訊地址
    _playerView.url = [NSURL URLWithString:cell.model.videoUrl];
    //播放
    [_playerView playVideo];
    //返回按鈕點選事件回撥
    [_playerView backButton:^(UIButton *button) {
        NSLog(@"返回按鈕被點選");
    }];
    //播放完成回撥
    [_playerView endPlay:^{
        //銷燬播放器
        [_playerView destroyPlayer];
        _playerView = nil;
        _cell = nil;
        NSLog(@"播放完成");
    }];
}
複製程式碼
判斷cell是否滑出TableView程式碼
//cell離開tableView時呼叫
- (void)tableView:(UITableView *)tableView didEndDisplayingCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath{
    //因為複用,同一個cell可能會走多次
    if ([_cell isEqual:cell]) {
        //區分是否是播放器所在cell,銷燬時將指標置空
        [_playerView destroyPlayer];
        _cell = nil;
    }
}
複製程式碼

播放器效果圖

效果圖

總結

本次主要是修復以前遺留的bug,完善了各種情況的Demo,優化了體驗,Demo中有詳細的註釋,具體請在github下載CLPlayer , 如果喜歡,歡迎star。

相關文章