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

引导页的展示

时间:2016-03-09 13:02:50      阅读:123      评论:0      收藏:0      [点我收藏+]

标签:

在AppDelegate中进行判断   

 //引导页

    if(![[NSUserDefaults standardUserDefaults] boolForKey:@"firstLaunch"]){

        [[NSUserDefaults standardUserDefaults] setBool:YES forKey:@"firstLaunch"];

        //如果是第一次启动的话,使用UserGuideViewController (用户引导页面) 作为根视图

        UserGuideViewController *userGuideViewController = [[UserGuideViewController alloc] init];

        userGuideViewController.delegate = self;

        self.window.rootViewController = userGuideViewController;

        return;

    }

引导页的展示

标签:

原文地址:http://www.cnblogs.com/liuyingjie/p/5257623.html

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