标签:
if(![[NSUserDefaults standardUserDefaults] boolForKey:@"firstLaunch"]){
[[NSUserDefaults standardUserDefaults] setBool:YES forKey:@"firstLaunch"];
NSLog(@"第一次启动");
[[NSUserDefaults standardUserDefaults] setBool:NO forKey:@"isLogin"];
}else{
NSLog(@"已经不是第一次启动了");
}
标签:
原文地址:http://www.cnblogs.com/huoran1120/p/5727391.html