- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
UIStoryboard *story=[UIStoryboard storyboardWithName:@"Main" bundle:[NSBundle mainBundle]];
//欢迎页显示3秒
[NSThread sleepForTimeInterval:3.0];
//纪录判断用户是否首次打开
NSUserDefaults *userDefaults=[NSUserDefaults standardUserDefaults];
if (![userDefaults boolForKey:@"firstLoad"]) {
WelcomeViewController *w=[story instantiateViewControllerWithIdentifier:@"firstPage"];
self.window.rootViewController=w;
[userDefaults setBool:YES forKey:@"firstLoad"];
[userDefaults synchronize];
}
}
UIStoryboard *story=[UIStoryboard storyboardWithName:@"Main" bundle:[NSBundle mainBundle]];
//欢迎页显示3秒
[NSThread sleepForTimeInterval:3.0];
//纪录判断用户是否首次打开
NSUserDefaults *userDefaults=[NSUserDefaults standardUserDefaults];
if (![userDefaults boolForKey:@"firstLoad"]) {
WelcomeViewController *w=[story instantiateViewControllerWithIdentifier:@"firstPage"];
self.window.rootViewController=w;
[userDefaults setBool:YES forKey:@"firstLoad"];
[userDefaults synchronize];
}
}