//获取单列对象
NSUserDefaults *use=[NSUserDefaults standardUserDefaults];
//通过单列
BOOL isopened=[use boolForKey:@"a"];
if (isopened ==YES)
{
//直接进入到主页面或登录页面
Diyige * a=[[Diyige alloc]init];
UINavigationController *nav=[[UINavigationController alloc]initWithRootViewController:a];
self.window.rootViewController=nav;
}
else
{
//进入新手页面
ViewController *vi=[[ViewController alloc]init];
UINavigationController *nav=[[UINavigationController alloc]initWithRootViewController:vi];
self.window.rootViewController=nav;
//通过单列对象 赋值
[use setBool:YES forKey:@"a"];
}
网友评论