//判断是不是第一次启动应用
if(![[NSUserDefaults standardUserDefaults] boolForKey:@"firstLaunch"])
{
[[NSUserDefaults standardUserDefaults] setBool:YES forKey:@"firstLaunch"];
NSLog(@"第一次启动");
//如果是第一次启动的话,使用 GuideViewController (用户引导页面) 作为根视图
GuideViewController * guideVC = [[[GuideViewController alloc] init] autorelease];
self.window.rootViewController = guideVC;
}
else
{
NSLog(@"不是第一次启动");
//如果不是第一次启动的话,使用RootViewController作为根视图
RootViewController * rootVC = [[[RootViewController alloc] init] autorelease];
self.window.rootViewController = rootVC;
}