zoukankan      html  css  js  c++  java
  • 引导页的展示

    在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;

        }

  • 相关阅读:
    jquery animate() stop() finish() 方法使用
    ant 相关命令
    ant 安装 网址
    邮件
    webdriver until
    python HTML报告
    登录
    yun
    centos7搭建smb服务
    爬取图片
  • 原文地址:https://www.cnblogs.com/liuyingjie/p/5257623.html
Copyright © 2011-2022 走看看