iOS 版本更新提示

项目需求:
由于公司项目是做离线地图的,老板希望有版本更新时用户能及时更新,所以要求app第一次检测到版本更新时记录下来这次时间,如果30天后没更新,app只能使用5次,每次进入app就弹框提示更新和稍后更新,弹出第5次以后,若还未更新则强制用户更新,不然无法使用app,只有app更新版本后才能继续使用

实现思路:
通过联网检测项目在AppStore上的版本号与本地info.plist中获取的当前版本号对比,
若有新版本则跳转到AppStore项目页面下载

实现:
从info.plist中获取项目当前版本号:

NSDictionary *infoDic=[[NSBundle mainBundle] infoDictionary];
NSString *currentVersion=infoDic[@"CFBundleShortVersionString"];

发送网络请求获取App store中项目的最新版本号:
以下方法会发生请求从app store中检测app最新的信息,拿到最新的版本号会与info.plist中版本号进行对比判断,此方法中还封装了一些业务逻辑:app在第一次检测更新到30天以后,会在每次启动app时提示版本更新和稍后更新,5次以后若还未更新则强制用户更新,不然无法使用app,
具体根据公司的要求处理业务逻辑
下面方法也可以在application:didFinishLaunchingWithOptions:中调用

+ (void)checkAppVersionWithCompletion:(void (^)(BOOL isSuccess))completion {
    
    [[NSUserDefaults standardUserDefaults] setObject:kCurrentVersion forKey:AppUpdateCheckCurrentVersionKey];
    
    // 获取appStore版本号
    [[[NSURLSession sharedSession] dataTaskWithRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:@"http://itunes.apple.com/cn/lookup?id=953032158"]] completionHandler:^(NSData * _Nullable data, NSURLResponse * _Nullable response, NSError * _Nullable error) {
        
        if (completion) {
            dispatch_async(dispatch_get_main_queue(), ^{
                completion(data && !error);
            });
        }
        
        if (data == nil || error) {
            return;
        }
        NSDictionary *appInfoDic = [NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingMutableLeaves error:&error];
        NSArray *array = [appInfoDic objectForKey:@"results"];
        if (array.count < 1) {
            return;
        }
        
        NSDictionary *dic = [array objectAtIndex:0];
        NSString *appStoreVersion = [dic objectForKey:@"version"];
#if DEBUG
        
        appStoreVersion = @"1000000";
#endif
        BOOL isNewVersion = [kCurrentVersion compare:appStoreVersion options:NSNumericSearch] == NSOrderedAscending;
        if (isNewVersion) {
            
            NSTimeInterval fristCheckAppUpdateTime = [[NSUserDefaults standardUserDefaults] doubleForKey:FristCheckAppUpdateKey];
            NSTimeInterval currentTimeInterval = [[NSDate date] timeIntervalSince1970];
            if (fristCheckAppUpdateTime <= 0.0) {
                // 记录第一次版本检测到版本更新的时间
                fristCheckAppUpdateTime = currentTimeInterval;
                [[NSUserDefaults standardUserDefaults] setDouble:fristCheckAppUpdateTime forKey:FristCheckAppUpdateKey];
            }
            
            BOOL isTipUpdate = NO;
            if (!AppUpdateCheckDayCount) {
                isTipUpdate = YES;
            } else {
                NSTimeInterval day30LaterInterval = [NSDate getTimeIntervalWithDayCount:AppUpdateCheckDayCount fromTimeInterval:fristCheckAppUpdateTime];
                // 当第一次提示更新到现在有30天了,就在每次启动app时提示用户更新app
                isTipUpdate = currentTimeInterval >= day30LaterInterval;
            }

            if (isTipUpdate) {
                
                __block NSInteger currentTipCount = [[NSUserDefaults standardUserDefaults] integerForKey:AppUpdateCheckUpdateApkWarnTipCountKey];
                
                dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(3 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
                    
                    NSString *message = nil;
                    NSArray *buttonTitles = @[];
                    if (currentTipCount >= AppUpdateCheckMaxTipCount) {
                        message = @"程序有最新版本,请更新并运行新版";
                        buttonTitles = @[@"立即更新"];
#if DEBUG
                        buttonTitles = @[@"立即更新", @"Reset"];
#endif
                    } else {
                        message = [NSString stringWithFormat:@"程序有最新版本,是否更新?请注意:您当前的版本还有%ld次使用机会", AppUpdateCheckMaxTipCount-currentTipCount];
                        buttonTitles = @[@"立即更新", @"稍后更新"];
                    }
                    
                    currentTipCount++;
                    [[NSUserDefaults standardUserDefaults] setInteger:currentTipCount forKey:AppUpdateCheckUpdateApkWarnTipCountKey];
                    [[NSUserDefaults standardUserDefaults] synchronize];
                    
                    [UIAlertView showWithTitle:@"有可用版本更新" message:message cancelButtonTitle:nil otherButtonTitles:buttonTitles tapBlock:^(UIAlertView *alertView, NSInteger buttonIndex) {
                        if (buttonIndex == 0) {
                            NSURL *url = [NSURL URLWithString:[@"https://itunes.apple.com/us/app/id953032158?ls=1&mt=8" stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]];
                            if ([[UIApplication sharedApplication] canOpenURL:url]) {
                                if ([UIDevice currentDevice].systemVersion.floatValue >= 10.0f) {
                                    [[UIApplication sharedApplication] openURL:url options:@{} completionHandler:nil];
                                } else {
                                    [[UIApplication sharedApplication] openURL:url];
                                }
                            }
                        }
#if DEBUG
                        if (buttonIndex == 1 && [buttonTitles containsObject:@"Reset"]) {
                            [[NSUserDefaults standardUserDefaults] setInteger:0 forKey:AppUpdateCheckUpdateApkWarnTipCountKey];
                            [[NSUserDefaults standardUserDefaults] synchronize];
                        }
#endif
                    }];
                });
            } else {
                [[NSUserDefaults standardUserDefaults] setInteger:0 forKey:AppUpdateCheckUpdateApkWarnTipCountKey];
                [[NSUserDefaults standardUserDefaults] synchronize];
            }
        } else {
            [[NSUserDefaults standardUserDefaults] setInteger:0 forKey:AppUpdateCheckUpdateApkWarnTipCountKey];
            [[NSUserDefaults standardUserDefaults] synchronize];
        }
        
    }] resume];
    
}

当app未更新且提示次数超过5次时就强制用户更新,可以在applicationDidBecomeActive中调用下面的方法提示更新,拦截用户进入app

// 强制更新
+ (void)showUpdateApp {
    
    // 为了防止app更新完成后 启动时获取的currentTipCount值没有改变,会导致再次提示一次强制更新,这里在checkAppVersion时将版本存起来,然后更新完成后再对比就不会出现问题
    NSString *currentVersion = [[NSUserDefaults standardUserDefaults] stringForKey:AppUpdateCheckCurrentVersionKey];
    BOOL isNewVersion = [currentVersion compare:kCurrentVersion options:NSNumericSearch] == NSOrderedAscending;
    // 如果kCurrentVersion大于currentVersion,说明当前版本已经更新了
    if (!isNewVersion) {
        // 当app未更新且提示次数超过5次时就强制用户更新
        NSInteger currentTipCount = [[NSUserDefaults standardUserDefaults] integerForKey:AppUpdateCheckUpdateApkWarnTipCountKey];
        if (currentTipCount >= AppUpdateCheckMaxTipCount) {
            
            NSArray *buttonTitles = @[@"立即更新"];
#if DEBUG
            buttonTitles = @[@"立即更新", @"Reset"];
#endif
            dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(2 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
                [UIAlertView showWithTitle:@"有可用版本更新" message:@"程序有最新版本,请更新并运行新版" cancelButtonTitle:nil otherButtonTitles:buttonTitles tapBlock:^(UIAlertView *alertView, NSInteger buttonIndex) {
                    if (buttonIndex == 0) {
                        NSURL *url = [NSURL URLWithString:[@"https://itunes.apple.com/us/app/id953032158?ls=1&mt=8" stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]];
                        if ([[UIApplication sharedApplication] canOpenURL:url]) {
                            if ([UIDevice currentDevice].systemVersion.floatValue >= 10.0f) {
                                [[UIApplication sharedApplication] openURL:url options:@{} completionHandler:nil];
                            } else {
                                [[UIApplication sharedApplication] openURL:url];
                            }
                        }
                    }
                    
#if DEBUG
                    if (buttonIndex == 1 && [buttonTitles containsObject:@"Reset"]) {
                        [[NSUserDefaults standardUserDefaults] setInteger:0 forKey:AppUpdateCheckUpdateApkWarnTipCountKey];
                        [[NSUserDefaults standardUserDefaults] synchronize];
                    }
#endif
                }];
            });
            
        }
    } else {
        [[NSUserDefaults standardUserDefaults] setInteger:0 forKey:AppUpdateCheckUpdateApkWarnTipCountKey];
        [[NSUserDefaults standardUserDefaults] synchronize];
    }
}

Demo

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,271评论 5 476
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,275评论 2 380
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,151评论 0 336
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,550评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,553评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,559评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,924评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,580评论 0 257
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,826评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,578评论 2 320
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,661评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,363评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,940评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,926评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,156评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,872评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,391评论 2 342

推荐阅读更多精彩内容

  • 最近项目中用到了这个,所以简要谈一下,之前一直没负责过这块,顺便自己mark一下。 需求:有新版本提示用户进行...
    捏捏你的脸阅读 1,136评论 1 4
  • 苹果审核中如果发现项目中有版本更新提示,将禁止上架,那么我们可以让后台传一个字段,上架前后修改一下即可,或者通过下...
    fulen阅读 3,832评论 2 3
  • 在App开发过程中,难免会碰到类似于添加版本更新提示这种开发需求。如何更简单更快捷的实现版本更新提示,便成了重中之...
    SelwynBee阅读 7,467评论 7 24
  • 用到版本更新,首先现在网络上搜了搜发现没有满意的,于是参考一个 重写了一下,支持1.1.1.1.2这种的 版本判断...
    谁在呼叫贱队阅读 1,055评论 0 0
  • 注意:这种方式有延时,会存在如App1.0.1已上线,但是获取的版本号还是1.0.0。所以还是推荐去后台记录版本号...
    程序猿马国玺阅读 14,035评论 19 18