LVCUGCLivePlayerController.m 31.7 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649
//
//  LVCUGCLivePlayerController.m
//  LiveVideoCloud
//
//  Created by cnliveJunBo on 17/3/17.
//  Copyright © 2017年 cnlive. All rights reserved.
//

#import "LVCUGCLivePlayerController.h"
#import <CNLivePlayerSDK/CNLiveWebcastManager.h>
#import "LVCUGCPlayerLoadingView.h"
#import "LVCUGCBackgroundView.h"
#import "UIImage+LVCVagueImage.h"
#import "LiveBaseView.h"


@interface LVCUGCLivePlayerController () {
    
    float _oneY;
    float _SecondY;
    float _ThirdY;
    UIView *_tempView;
    UIPanGestureRecognizer *_pan;
    LVCUGCPlayerLoadingView *_firstLoadView;
    LVCUGCPlayerLoadingView *_secondLoadView;
    LVCUGCPlayerLoadingView *_thirdLoadView;
    UIImage *_blurImage;
}

@property (nonatomic, strong) UIView *viewOne;
@property (nonatomic, strong) UIView *viewSecond;
@property (nonatomic, strong) UIView *viewThird;
@property (nonatomic ,strong) LiveBaseView * _Nullable             liveBaseView;

@property (nonatomic, strong) CNLiveMoviePlayerController *player; // 播放器

@property (nonatomic, strong) LVCUGCBackgroundView *bgView; // 背景视图

@property (nonatomic, strong) UIButton *vodPlayerQuitBtn;

@end

@implementation LVCUGCLivePlayerController

- (void)viewWillAppear:(BOOL)animated {
    
    [super viewWillAppear:animated];
    
    self.navigationController.navigationBar.hidden = YES;
}

- (void)viewWillDisappear:(BOOL)animated {
    
    [super viewWillDisappear:animated];
    
    self.navigationController.navigationBar.hidden = NO;
}

- (void)viewDidLoad {
    [super viewDidLoad];
    
    self.view.backgroundColor = [UIColor whiteColor];
    NSString *path = [[NSBundle mainBundle] pathForResource:@"UGCLoading" ofType:@"jpeg"];
    UIImage *image = [UIImage imageWithContentsOfFile:path];
    _blurImage = [UIImage boxblurImage:image withBlurNumber:0.6];
    
    [self.view addSubview:self.viewOne];
    [self.view addSubview:self.viewSecond];
    [self.view addSubview:self.viewThird];
    
    [self.view addSubview:self.bgView];
    
    if ([_model.activityStatus isEqualToString:@"0"]) {
        
        _bgView.anchorStatus = 4;
        
    } else if ([_model.activityStatus isEqualToString:@"4"]) {
        
        _bgView.anchorStatus = 5;
        
    } else if ([_model.activityStatus isEqualToString:@"-2"]) {
        
        _bgView.anchorStatus = 6;
    }
}

- (void)addLiveBaseView
{
    [_viewSecond addSubview:self.liveBaseView ];
}

- (void)setModel:(LVCUGCLivePlayerModel *)model {
    
    if (_model != model) {
        _model = model;
    }
    
    _pan = [[UIPanGestureRecognizer alloc] initWithTarget:self action:@selector(panGesture:)];
    [self installMovieNotificationObservers];
    
    if ([model.activityStatus isEqualToString:@"1"]) {
        [self addLiveBaseView];
        _player = [[CNLiveMoviePlayerController alloc] initLivePlayWithChannelId:model.channelId
                                                                     authSuccess:^{
                                                                         
                                                                         _player.videoDecoderMode = CNLiveMovieVideoDecoderMode_AUTO;
                                                                         _player.view.frame = self.view.bounds;
                                                                         _player.shouldAutoplay = YES;
                                                                         [_player prepareToPlay];
                                                                         [self.viewSecond addSubview:_player.view];
                                                                         [self.viewSecond sendSubviewToBack:_player.view];
                                                                         [_player.view addGestureRecognizer:_pan];
                                                                         
                                                                     } authFailed:^(NSDictionary *errorInfo) {
                                                                         NSLog(@"初始化直播播放器失败:%@", errorInfo);
                                                                         
                                                                     } getAnchorStatusResult:^(BOOL result) {
                                                                         
                                                                         NSLog(@"-------------获取主播状态%d", result ? YES : NO);
                                                                         
                                                                     }];
        
    } else if ([model.activityStatus isEqualToString:@"2"]) {
        
        _player = [[CNLiveMoviePlayerController alloc] initVodPlayWithVId:model.activityId
                                                              authSuccess:^{
                                                                  
                                                                  _player.videoDecoderMode = CNLiveMovieVideoDecoderMode_AUTO;
                                                                  _player.view.frame = self.view.bounds;
                                                                  _player.shouldAutoplay = YES;
                                                                  [_player prepareToPlay];
                                                                  [self.viewSecond addSubview:_player.view];
                                                                  [self.viewSecond sendSubviewToBack:_player.view];
                                                                  [_player.view addGestureRecognizer:_pan];
                                                                  
                                                              } authFailed:^(NSDictionary *errorInfo) {
                                                                  NSLog(@"初始化点播播放器失败%@", errorInfo);
                                                              }];
        
    }
}

#pragma mark - UIPanGestureRecognizer !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
- (void)panGesture:(UIPanGestureRecognizer *)recognizer {
    
    CGPoint t = [recognizer translationInView:self.viewSecond];
    NSLog(@"移动距离>>>>>>>>>>>>>>%f",t.y);
    
    if (((_index == 0) && (t.y > 0)) || ((_index == (_playArray.count - 1)) && (t.y < 0))) {
        return;
    }
    
    _viewOne.frame = CGRectMake(0, _oneY + t.y, SCREEN_WIDTH, SCREEN_HEIGHT);
    _viewSecond.frame = CGRectMake(0, _SecondY + t.y, SCREEN_WIDTH, SCREEN_HEIGHT);
    _viewThird.frame = CGRectMake(0, _ThirdY + t.y, SCREEN_WIDTH, SCREEN_HEIGHT);
    
    switch (recognizer.state) {
        case UIGestureRecognizerStateBegan:
        case UIGestureRecognizerStateChanged:
        {
            
        }
            break;
        case UIGestureRecognizerStateEnded:
        case UIGestureRecognizerStateFailed:
        case UIGestureRecognizerStateCancelled:
        {
            if (t.y > 100) {
                [UIView animateWithDuration:0.2 animations:^{
                    
                    _viewOne.frame = CGRectMake(0, _oneY + SCREEN_HEIGHT, SCREEN_WIDTH, SCREEN_HEIGHT);
                    _viewSecond.frame = CGRectMake(0, _SecondY + SCREEN_HEIGHT, SCREEN_WIDTH, SCREEN_HEIGHT);
                    _viewThird.frame = CGRectMake(0, _ThirdY + SCREEN_HEIGHT, SCREEN_WIDTH, SCREEN_HEIGHT);
                    
                } completion:^(BOOL finished) {
                    
                    _index = _index - 1;
                    if (_vodPlayerQuitBtn) {
                        [_vodPlayerQuitBtn removeFromSuperview];
                    }
                    [_player.view removeFromSuperview];
                    [_player stop];
                    _player = nil;
                    // 停止后的视图,拿到自己的加载图来显示
                    [_viewSecond addSubview:_secondLoadView];
                    
                    _viewThird.frame = CGRectMake(0, -SCREEN_HEIGHT, SCREEN_WIDTH, SCREEN_HEIGHT);
                    _tempView = _viewOne;
                    _viewOne = _viewThird;
                    _viewThird = _viewSecond;
                    _viewSecond = _tempView;
                    
                    //往下滑  播放上一个
                    if (_index >= 0) {
                        if ([_playArray[_index].activityStatus isEqualToString:@"2"]) {
                            
                            [_viewSecond addSubview:self.vodPlayerQuitBtn];
                            _player = [[CNLiveMoviePlayerController alloc] initVodPlayWithVId:_playArray[_index].activityId
                                                                                  authSuccess:^{
                                                                                      
                                                                                      _player.videoDecoderMode = CNLiveMovieVideoDecoderMode_AUTO;
                                                                                      _player.view.frame = self.view.bounds;
                                                                                      _player.shouldAutoplay = YES;
                                                                                      [_player prepareToPlay];
                                                                                      [_viewSecond addSubview:_player.view];
                                                                                      [_viewSecond sendSubviewToBack:_player.view];
                                                                                      [_player.view addGestureRecognizer:_pan];
                                                                                      
                                                                                  } authFailed:^(NSDictionary *errorInfo) {
                                                                                      NSLog(@"初始化点播播放器失败%@", errorInfo);
                                                                                  }];
                            
                        } else if ([_playArray[_index].activityStatus isEqualToString:@"1"]) {
                            
                            [self addLiveBaseView];

                            _player = [[CNLiveMoviePlayerController alloc] initLivePlayWithChannelId:_playArray[_index].channelId
                                                                                         authSuccess:^{
                                                                                             
                                                                                             _player.videoDecoderMode = CNLiveMovieVideoDecoderMode_AUTO;
                                                                                             _player.view.frame = self.view.bounds;
                                                                                             _player.shouldAutoplay = YES;
                                                                                             [_player prepareToPlay];
                                                                                             [_viewSecond addSubview:_player.view];
                                                                                             [_viewSecond sendSubviewToBack:_player.view];
                                                                                             [_player.view addGestureRecognizer:_pan];
                                                                                             
                                                                                         } authFailed:^(NSDictionary *errorInfo) {
                                                                                             NSLog(@"初始化直播播放器失败:%@", errorInfo);
                                                                                             
                                                                                         } getAnchorStatusResult:^(BOOL result) {
                                                                                             
                                                                                             NSLog(@"-------------获取主播状态%d", result ? YES : NO);
                                                                                             
                                                                                         }];
                        } else if ([_playArray[_index].activityStatus isEqualToString:@"0"]) {
                            
                            
                            _bgView.anchorStatus = 4;
                            
                        } else if ([_playArray[_index].activityStatus isEqualToString:@"4"]) {
                            
                            _bgView.anchorStatus = 5;
                            
                        } else if ([_playArray[_index].activityStatus isEqualToString:@"-2"]) {
                            
                            _bgView.anchorStatus = 6;
                        }
                    }
                    
                    _oneY = _viewOne.frame.origin.y;
                    _SecondY = _viewSecond.frame.origin.y;
                    _ThirdY = _viewThird.frame.origin.y;
                }];
            } else if (t.y < -100) {
                
                [UIView animateWithDuration:0.2 animations:^{
                    
                    _viewOne.frame = CGRectMake(0, _oneY - SCREEN_HEIGHT, SCREEN_WIDTH, SCREEN_HEIGHT);
                    _viewSecond.frame = CGRectMake(0, _SecondY - SCREEN_HEIGHT, SCREEN_WIDTH, SCREEN_HEIGHT);
                    _viewThird.frame = CGRectMake(0, _ThirdY - SCREEN_HEIGHT, SCREEN_WIDTH, SCREEN_HEIGHT);
                    
                } completion:^(BOOL finished) {
                    
                    _index = _index + 1;
                    if (_vodPlayerQuitBtn) {
                        [_vodPlayerQuitBtn removeFromSuperview];
                    }
                    [_player.view removeFromSuperview];
                    [_player stop];
                    _player = nil;
                    // 停止后的视图,拿到自己的加载图来显示
                    [_viewSecond addSubview:_secondLoadView];
                    
                    _viewOne.frame = CGRectMake(0, SCREEN_HEIGHT, SCREEN_WIDTH, SCREEN_HEIGHT);
                    _tempView = _viewOne;
                    _viewOne = _viewSecond;
                    _viewSecond = _viewThird;
                    _viewThird = _tempView;
                    
                    //往上滑  播放下一个
                    if (_index < _playArray.count) {  // 判越界
                        
                        if ([_playArray[_index].activityStatus isEqualToString:@"2"]) {
                            
                            [_viewSecond addSubview:self.vodPlayerQuitBtn];
                            _player = [[CNLiveMoviePlayerController alloc] initVodPlayWithVId:_playArray[_index].activityId
                                                                                  authSuccess:^{
                                                                                      
                                                                                      _player.videoDecoderMode = CNLiveMovieVideoDecoderMode_AUTO;
                                                                                      _player.view.frame = self.view.bounds;
                                                                                      _player.shouldAutoplay = YES;
                                                                                      [_player prepareToPlay];
                                                                                      [_viewSecond addSubview:_player.view];
                                                                                      [_viewSecond sendSubviewToBack:_player.view];
                                                                                      [_player.view addGestureRecognizer:_pan];
                                                                                      
                                                                                  } authFailed:^(NSDictionary *errorInfo) {
                                                                                      NSLog(@"初始化点播播放器失败%@", errorInfo);
                                                                                  }];
                            
                        } else if ([_playArray[_index].activityStatus isEqualToString:@"1"]) {
                            [self addLiveBaseView];

                            _player = [[CNLiveMoviePlayerController alloc] initLivePlayWithChannelId:_playArray[_index].channelId
                                                                                         authSuccess:^{
                                                                                             
                                                                                             _player.videoDecoderMode = CNLiveMovieVideoDecoderMode_AUTO;
                                                                                             _player.view.frame = self.view.bounds;
                                                                                             _player.shouldAutoplay = YES;
                                                                                             [_player prepareToPlay];
                                                                                             [_viewSecond addSubview:_player.view];
                                                                                             [_viewSecond sendSubviewToBack:_player.view];
                                                                                             [_player.view addGestureRecognizer:_pan];
                                                                                             
                                                                                         } authFailed:^(NSDictionary *errorInfo) {
                                                                                             NSLog(@"初始化直播播放器失败:%@", errorInfo);
                                                                                             
                                                                                         } getAnchorStatusResult:^(BOOL result) {
                                                                                             
                                                                                             NSLog(@"-------------获取主播状态%d", result ? YES : NO);
                                                                                             
                                                                                         }];
                        } else if ([_playArray[_index].activityStatus isEqualToString:@"0"]) {
                            
                            _bgView.anchorStatus = 4;
                            
                        } else if ([_playArray[_index].activityStatus isEqualToString:@"4"]) {
                            
                            _bgView.anchorStatus = 5;
                            
                        } else if ([_playArray[_index].activityStatus isEqualToString:@"-2"]) {
                            
                            _bgView.anchorStatus = 6;
                        }
                        
                    }
                    
                    _oneY = _viewOne.frame.origin.y;
                    _SecondY = _viewSecond.frame.origin.y;
                    _ThirdY = _viewThird.frame.origin.y;
                }];
                
            } else {
                
                [UIView animateWithDuration:0.2 animations:^{
                    
                    _viewOne.frame = CGRectMake(0, _oneY, SCREEN_WIDTH, SCREEN_HEIGHT);
                    _viewSecond.frame = CGRectMake(0, _SecondY, SCREEN_WIDTH, SCREEN_HEIGHT);
                    _viewThird.frame = CGRectMake(0, _ThirdY, SCREEN_WIDTH, SCREEN_HEIGHT);
                    
                } completion:^(BOOL finished) {
                
                    _oneY = _viewOne.frame.origin.y;
                    _SecondY = _viewSecond.frame.origin.y;
                    _ThirdY = _viewThird.frame.origin.y;
                }];
            }
        }
            break;
        default:
            break;
    }
}

#pragma mark - Action !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
-(void)installMovieNotificationObservers   //添加视频播放通知监听
{
    //视频加载状态改变
    [[NSNotificationCenter defaultCenter] addObserver:self
                                             selector:@selector(loadStateDidChange:)
                                                 name:MPMoviePlayerLoadStateDidChangeNotification
                                               object:nil];
    
    //视频播放错误及结束原因
    [[NSNotificationCenter defaultCenter] addObserver:self
                                             selector:@selector(moviePlayBackDidFinish:)
                                                 name:MPMoviePlayerPlaybackDidFinishNotification
                                               object:nil];
    
    //视频缓冲至可播放状态
    [[NSNotificationCenter defaultCenter] addObserver:self
                                             selector:@selector(mediaIsPreparedToPlayDidChange:)
                                                 name:MPMediaPlaybackIsPreparedToPlayDidChangeNotification
                                               object:nil];
    
    //视频播放状态改变
    [[NSNotificationCenter defaultCenter] addObserver:self
                                             selector:@selector(moviePlayBackStateDidChange:)
                                                 name:MPMoviePlayerPlaybackStateDidChangeNotification
                                               object:nil];
    
    
    //获取主播状态通知(点播和普通播放不需要注册该通知)
    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(anchorStatusChanged:)
                                                 name:CNLiveAnchorStatusChangedNotification
                                               object:nil];
}

- (void)toast:(NSString*)message { // 提示框
    
    UIAlertView *toast = [[UIAlertView alloc] initWithTitle:nil
                                                    message:message
                                                   delegate:nil
                                          cancelButtonTitle:nil
                                          otherButtonTitles:nil, nil];
    [toast show];
    double duration = 2.5;
    dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(duration * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
        [toast dismissWithClickedButtonIndex:0 animated:NO];
    });
}


#pragma mark - 通知 Action  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
- (void)loadStateDidChange:(NSNotification *)notification  //视频加载状态改变
{
    if (_player) {
        MPMovieLoadState loadState = _player.loadState;
        if ((loadState & MPMovieLoadStatePlaythroughOK) != 0) {
            
            NSLog(@"loadStateDidChange: MPMovieLoadStatePlaythroughOK: %d\n", (int)loadState);
            
        } else if ((loadState & MPMovieLoadStateStalled) != 0) {
            
            NSLog(@"loadStateDidChange: MPMovieLoadStateStalled: %d\n", (int)loadState);
            
        } else {
            
            NSLog(@"loadStateDidChange: ???: %d\n", (int)loadState);
        }
    }
}


- (void)moviePlayBackDidFinish:(NSNotification *)notification   //视频播放错误及结束原因
{
    if (_player) {
        int reason = [[[notification userInfo] valueForKey:MPMoviePlayerPlaybackDidFinishReasonUserInfoKey] intValue];
        
        switch (reason)
        {
            case MPMovieFinishReasonPlaybackEnded:
                _bgView.anchorStatus = 3;   // 点播播放结束
                NSLog(@"playbackStateDidChange: MPMovieFinishReasonPlaybackEnded: %d\n", reason);
                break;
                
            case MPMovieFinishReasonUserExited:
                NSLog(@"playbackStateDidChange: MPMovieFinishReasonUserExited: %d\n", reason);
                break;
                
            case MPMovieFinishReasonPlaybackError:
                NSLog(@"playbackStateDidChange: MPMovieFinishReasonPlaybackError: %d\n", reason);
                [self toast:@"MPMovieFinishReasonPlaybackError"];
                break;
                
            default:
                NSLog(@"playbackPlayBackDidFinish: ???: %d\n", reason);
                break;
        }
    }
}


- (void)mediaIsPreparedToPlayDidChange:(NSNotification *)notification   //视频缓冲至可播放状态
{
    if (_player) {
        NSLog(@"isPreparedToPlay");
        
        [self removeSecondLoadingView];
    }
}

- (void)removeSecondLoadingView {
    
    if (_viewSecond.subviews.count>0) {
        for (UIView *subViews in _viewSecond.subviews) {
            if ([subViews isKindOfClass:[LVCUGCPlayerLoadingView class]]) {
                [subViews removeFromSuperview];
            }
        }
    }
}


- (void)moviePlayBackStateDidChange:(NSNotification *)notification   //视频播放状态改变
{
    if (_player) {
        
        switch (_player.playbackState) {
            case MPMoviePlaybackStateStopped: {
                
                NSLog(@"moviePlayBackStateDidChange : MPMoviePlaybackStateStopped");
                break;
            }
            case MPMoviePlaybackStatePlaying: {
                
                NSLog(@"moviePlayBackStateDidChange : MPMoviePlaybackStatePlaying");
                break;
            }
            case MPMoviePlaybackStatePaused:
                
                NSLog(@"moviePlayBackStateDidChange : MPMoviePlaybackStatePaused");
                break;
            case MPMoviePlaybackStateInterrupted:
                
                NSLog(@"moviePlayBackStateDidChange : MPMoviePlaybackStateInterrupted");
                break;
            case MPMoviePlaybackStateSeekingForward:
                
                NSLog(@"moviePlayBackStateDidChange : MPMoviePlaybackStateSeekingForward");
                break;
            case MPMoviePlaybackStateSeekingBackward:
                
                NSLog(@"moviePlayBackStateDidChange : MPMoviePlaybackStateSeekingBackward");
                break;
            default:
                
                NSLog(@"moviePlayBackStateDidChange : %ld", (long)_player.playbackState);
                break;
        }
    }
}


- (void)anchorStatusChanged:(NSNotification *)notification   //  获取主播状态通知
{
    if (_player.anchorStatus == 2) {  // 已结束
        
    }
    _bgView.anchorStatus = _player.anchorStatus;
}


- (void)anchorStatusConnectFailed    //重新连接获取主播状态
{
    
}

#pragma mark - Button Action !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
- (void)backToList {
    
    [_player stop];
    [self.navigationController popViewControllerAnimated:YES];
}

#pragma mark - GetMethod !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
- (LiveBaseView *)liveBaseView
{
    if (!_liveBaseView)
    {
        _liveBaseView = [LiveBaseView liveBaseView];
        _liveBaseView.jumpType = JumpControllerTypePresent;
        _liveBaseView.viewController = self;
        _liveBaseView.backgroundColor = [UIColor clearColor];
        [_liveBaseView.closeBtn addTarget:self action:@selector(quitBtnClick) forControlEvents:UIControlEventTouchUpInside];
    }
    return _liveBaseView;
}

- (LVCUGCBackgroundView *)bgView {
    
    if (!_bgView) {
        _bgView = [[LVCUGCBackgroundView alloc] initWithFrame:self.view.bounds];
        _bgView.hidden = YES;
        [_bgView.backButton addTarget:self action:@selector(backToList) forControlEvents:UIControlEventTouchUpInside];
    }
    return _bgView;
}

- (UIView *)viewOne {
    if (!_viewOne) {
        _viewOne = [[UIView alloc] initWithFrame:CGRectMake(0, -SCREEN_HEIGHT, SCREEN_WIDTH, SCREEN_HEIGHT)];
        _viewOne.backgroundColor = [UIColor blackColor];
        _firstLoadView = [[LVCUGCPlayerLoadingView alloc] initWithFrame:self.view.bounds];
        if (_index > 0) {
            [_firstLoadView.bgImageView sd_setImageWithURL:[NSURL URLWithString:_playArray[_index-1].coverImgUrl] placeholderImage:_blurImage];
        }
        [_viewOne addSubview:_firstLoadView];
        _oneY = -SCREEN_HEIGHT;
    }
    return _viewOne;
}

- (UIView *)viewSecond {
    if (!_viewSecond) {
        _viewSecond = [[UIView alloc] initWithFrame:CGRectMake(0, 0, SCREEN_WIDTH, SCREEN_HEIGHT)];
        _viewSecond.backgroundColor = [UIColor blackColor];
        _secondLoadView = [[LVCUGCPlayerLoadingView alloc] initWithFrame:self.view.bounds];
        [_secondLoadView.bgImageView sd_setImageWithURL:[NSURL URLWithString:_model.coverImgUrl] placeholderImage:_blurImage];
        [_viewSecond addSubview:_secondLoadView];
        // 点播退出按钮
        [_viewSecond addSubview:self.vodPlayerQuitBtn];
        _SecondY = 0;
    }
    return _viewSecond;
}

- (UIView *)viewThird {
    if (!_viewThird) {
        _viewThird = [[UIView alloc] initWithFrame:CGRectMake(0, SCREEN_HEIGHT, SCREEN_WIDTH, SCREEN_HEIGHT)];
        _viewThird.backgroundColor = [UIColor blackColor];
        _thirdLoadView = [[LVCUGCPlayerLoadingView alloc] initWithFrame:self.view.bounds];
        [_thirdLoadView.bgImageView sd_setImageWithURL:[NSURL URLWithString:_playArray[_index+1].coverImgUrl] placeholderImage:_blurImage];
        [_viewThird addSubview:_thirdLoadView];
        _ThirdY = SCREEN_HEIGHT;
    }
    return _viewThird;
}

- (UIButton *)vodPlayerQuitBtn {
    if (!_vodPlayerQuitBtn) {
        _vodPlayerQuitBtn = [UIButton buttonWithType:UIButtonTypeCustom];
        _vodPlayerQuitBtn.frame = CGRectMake(SCREEN_WIDTH - 50, SCREEN_HEIGHT - 50, 40, 40);
        [_vodPlayerQuitBtn setImage:[UIImage imageNamed:@"LiveCloseNormal"] forState:UIControlStateNormal];
        [_vodPlayerQuitBtn setImage:[UIImage imageNamed:@"LiveCloseTouch"] forState:UIControlStateHighlighted];
        [_vodPlayerQuitBtn addTarget:self action:@selector(backToList) forControlEvents:UIControlEventTouchUpInside];
    }
    return _vodPlayerQuitBtn;
}

#pragma mark - 移除通知   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
- (void)removeMovieNotificationObservers
{
    [[NSNotificationCenter defaultCenter]removeObserver:self
                                                   name:MPMoviePlayerLoadStateDidChangeNotification
                                                 object:nil];
    [[NSNotificationCenter defaultCenter]removeObserver:self
                                                   name:MPMoviePlayerPlaybackDidFinishNotification
                                                 object:nil];
    [[NSNotificationCenter defaultCenter]removeObserver:self
                                                   name:MPMediaPlaybackIsPreparedToPlayDidChangeNotification
                                                 object:nil];
    [[NSNotificationCenter defaultCenter]removeObserver:self
                                                   name:MPMoviePlayerPlaybackStateDidChangeNotification
                                                 object:nil];
    
    [[NSNotificationCenter defaultCenter]removeObserver:self
                                                   name:CNLiveAnchorStatusChangedNotification
                                                 object:nil];
}

#pragma mark - 内存警告 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
- (void)didReceiveMemoryWarning {
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}

@end