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

iOS 监测应用是否是第一次打开&监测应用是否已经更新

时间:2014-09-25 23:14:08      阅读:197      评论:0      收藏:0      [点我收藏+]

标签:blog   http   io   os   ar   strong   for   2014   cti   

解决方案:在AppDelegate.h中的didFinishLaunchingWithOptions里面添加:

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
    // Override point for customization after application launch.
    NSLog(@"did Finish Launching With Options");
    
    if ([[NSUserDefaults standardUserDefaults] boolForKey:@"isFirstLaunched"]){
        NSLog(@"AppDelegate - didFinishLaunchingWithOptions: App was already launched.");
    }
    else{
        NSLog(@"AppDelegate - didFinishLaunchingWithOptions: App's first launch.");
        
        [[NSUserDefaults standardUserDefaults] setBool:YES forKey:@"isFirstLaunched"];
        [[NSUserDefaults standardUserDefaults] synchronize];
    }
    
    if ([[[NSUserDefaults standardUserDefaults] stringForKey:@"clientVersion"] isEqualToString:CLIENT_VERSION]) {
        NSLog(@"AppDelegate - didFinishLaunchingWithOptions: App version remains the same.");
    }
    else{
        NSLog(@"AppDelegate - didFinishLaunchingWithOptions: App version did update.");
        [[NSUserDefaults standardUserDefaults] setObject:CLIENT_VERSION forKey:@"clientVersion"];
        [[NSUserDefaults standardUserDefaults] synchronize];
    }
    
    return YES;
}


在App-Prefix.pch中定义CLIENT_VERSION:

    #define CLIENT_VERSION [[[NSBundle mainBundle] infoDictionary] objectForKey:@"CFBundleShortVersionString"]


参考链接:http://stackoverflow.com/questions/9964371/how-to-detect-first-time-app-launch-on-an-iphone/9964400#9964400


iOS 监测应用是否是第一次打开&监测应用是否已经更新

标签:blog   http   io   os   ar   strong   for   2014   cti   

原文地址:http://blog.csdn.net/willyang519/article/details/39558021

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