新手引导页,我是使用Coder_CYX所写collection的包,这里是传送门http://www.jianshu.com/p/0d1e2e067f6c,里面写了很多精彩的内容。
Coder_CYX的简书里写了很多新手有用的东西。引导页面主要是借鉴了别人的代码,也有自己通过NSUserDefaults 进行判断该APP是否是第一次启动,如果是则会从导航页面进入,不是则是进入登录页面,当然如果设置自动登录,则会直接进入首页,具体代码:在AppDelegate写入:
NSUserDefaults *ud = [NSUserDefaults standardUserDefaults];
NSString *isFiring = [ud objectForKey:@"firing"];
if (isFiring==nil) {
//这里是key之为空,进入导航页面
BootPageCollectionViewController *VCRoot = [[BootPageCollectionViewController alloc]init];
self.window.rootViewController = VCRoot;
[self.window makeKeyAndVisible];
[ud setObject:@"fired" forKey:@"firing"];
}else{
//这里是进入登录页面
UINavigationController *nav = [[UINavigationController alloc]initWithRootViewController:[[LoginViewController alloc]init]];
self.window.rootViewController = nav;
[self.window makeKeyAndVisible];
}
网友评论