a7510774 / startMovie

启动视屏 APP第一次启动播放视屏欢迎 启动页

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

startMovie

APP启动视屏 APP第一次启动播放视屏欢迎

PhotoShoot

image

How To Use

在AppDelegate.h中#import "WSMovieController.h"

BOOL isFirstLogin = [[[NSUserDefaults standardUserDefaults] objectForKey:@"isFirstLogin"] boolValue];
if (!isFirstLogin) {
    //是第一次
    WSMovieController *wsCtrl = [[WSMovieController alloc]init];
    wsCtrl.movieURL = [NSURL fileURLWithPath:[[NSBundle mainBundle]pathForResource:@"qidong"ofType:@"mp4"]];
    self.window.rootViewController = wsCtrl;
    [[NSUserDefaults standardUserDefaults] setObject:@"YES" forKey:@"isFirstLogin"];
}else{
    //不是首次启动
    ViewController *viewCtrl = [[ViewController alloc]init];
    self.window.rootViewController = viewCtrl;
}

About

启动视屏 APP第一次启动播放视屏欢迎 启动页


Languages

Language:Objective-C 100.0%