iOS 视频启动界面
生活随笔
收集整理的這篇文章主要介紹了
iOS 视频启动界面
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
一個簡單的 “視頻啟動界面” 的實現,參考他人的實現,核心抽出來,簡化了一下。
AnimationVideoViewController 實現
?
- (void)viewDidLoad {[super viewDidLoad];// Do any additional setup after loading the view from its nib.self.moviePlayer = [[MPMoviePlayerController alloc] initWithContentURL:self.videoURL];self.moviePlayer.view.frame = CGRectMake(0, 0, SCREEN_WIDTH, SCREEN_HEIGHT);self.moviePlayer.shouldAutoplay = YES;self.moviePlayer.controlStyle = MPMovieControlStyleNone;self.moviePlayer.repeatMode = MPMovieRepeatModeNone;self.moviePlayer.movieSourceType = MPMovieSourceTypeFile;[self.view addSubview:self.moviePlayer.view];//監聽播放完成[[NSNotificationCenter defaultCenter]addObserver:self selector:@selector(playFinsihed) name:MPMoviePlayerPlaybackDidFinishNotification object:nil];UIView *backView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, SCREEN_WIDTH, SCREEN_HEIGHT)];backView.backgroundColor = [UIColor clearColor];[self.moviePlayer.view addSubview:backView];UITapGestureRecognizer *tap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(clickClip:)];[backView addGestureRecognizer:tap];[self configShimmerLabel]; }?
?
AnimationVideoViewController 調用
- (void)viewWillAppear:(BOOL)animated{[super viewWillAppear:animated];[self configureVideoStrat];}- (void)configureVideoStrat {NSString *firstlaunch = @"firstlaunch";__weak typeof(self)weakSelf = self;NSInteger firstIN = [[[NSUserDefaults standardUserDefaults] valueForKey:firstlaunch] integerValue];if (firstIN != 0) {//return;}self.animationVC = [[AnimationVideoViewController alloc] init];self.animationVC.videoURL = [NSURL fileURLWithPath:[[NSBundle mainBundle]pathForResource:@"intro"ofType:@"mp4"]];self.animationVC.view.frame = CGRectMake(0, 0, SCREEN_WIDTH, SCREEN_HEIGHT);self.animationVC.finishBlock = ^{[UIView animateWithDuration:1.0 animations:^{weakSelf.animationVC.view.alpha = 0;} completion:^(BOOL finished) {[weakSelf.animationVC.view removeFromSuperview];weakSelf.animationVC = nil;}];};[[[UIApplication sharedApplication] keyWindow] addSubview:self.animationVC.view];[[[UIApplication sharedApplication] keyWindow] bringSubviewToFront:self.animationVC.view];[[NSUserDefaults standardUserDefaults] setValue:@(1) forKey:firstlaunch];[[NSUserDefaults standardUserDefaults] synchronize];}
?
github 地址:LCSVideotartPageExample
?
轉載于:https://www.cnblogs.com/saytome/p/6963909.html
總結
以上是生活随笔為你收集整理的iOS 视频启动界面的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: hdu 4493 Tutor 水题
- 下一篇: 使用NSCondition实现多线程同步