码迷,mamicode.com
首页 > 其他好文 > 详细

遇到别人留下的storyboard的,你需要一个引导图,但是不知道怎么跳转.

时间:2016-07-09 14:45:28      阅读:101      评论:0      收藏:0      [点我收藏+]

标签:

首先在AppDeledate.m文件里是这样.

{
    self.window = [[UIWindow alloc]initWithFrame:[UIScreen mainScreen].bounds];
    self.window.backgroundColor = [UIColor whiteColor];
    [self.window makeKeyAndVisible];
    
    if (![[NSUserDefaults standardUserDefaults] boolForKey:@"firstLaunch"]) {
        [[NSUserDefaults standardUserDefaults]setBool:YES forKey:@"firstLaunch"];
        //        NSLog(@"第一次启动");
        //如果是第一次启动的话,使用UserGuideViewController(用户引导页面) 作为根视图
        UserGuideViewController *userViewController=[[UserGuideViewController alloc]init];
        self.window.rootViewController=userViewController;
    }else{
        NSLog(@"不是第一次启动");
        [self  showHomeViewController];
    }
//跳转到Main
- (void)showHomeViewController
{
    [[UIApplication sharedApplication]setStatusBarHidden:NO];
    UIStoryboard *storyBoard =  [UIStoryboard storyboardWithName:@"Main" bundle:nil];
    
    self.window.rootViewController = [storyBoard instantiateInitialViewController];
}

然后如果你是第一次实用程序

在你的

UserGuideViewController.m文件里
//按钮的触发时间
-(void)firstpressed{
    //跳转至正文
    [[UIApplication sharedApplication]setStatusBarHidden:NO];
    UIStoryboard *storyBoard =  [UIStoryboard storyboardWithName:@"Main" bundle:nil];
    
    
    
    [self presentViewController:[storyBoard instantiateInitialViewController] animated:YES completion:nil];

}

 

遇到别人留下的storyboard的,你需要一个引导图,但是不知道怎么跳转.

标签:

原文地址:http://www.cnblogs.com/fume/p/5655683.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!