码迷,mamicode.com
首页 > 移动开发 > 详细

iOS:新特性展示

时间:2014-11-28 14:05:21      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:style   blog   io   ar   color   os   使用   sp   for   

+ (void)choseRootVC
{
    NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
    NSString *saveVersion = [defaults objectForKey:@"CFBundleVersion"];
    NSString *currentVersion = [NSBundle mainBundle].infoDictionary[@"CFBundleVersion"];
    if ([saveVersion isEqualToString:currentVersion]) {//两个版本号相同,不是第一次使用这个软件
        IWTabBarController *main = [[IWTabBarController alloc]init];
        [UIApplication sharedApplication].keyWindow.rootViewController = main;
    }else//版本号不同,第一次使用这个软件
    {
        IWNewfeatureViewController *newfeature = [[IWNewfeatureViewController alloc]init];
        [UIApplication sharedApplication].keyWindow.rootViewController = newfeature;
    }
}

 

iOS:新特性展示

标签:style   blog   io   ar   color   os   使用   sp   for   

原文地址:http://www.cnblogs.com/LJson/p/4128148.html

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