美文网首页
APP 版本更新提示

APP 版本更新提示

作者: xieyinghao | 来源:发表于2017-06-27 19:17 被阅读43次

//版本检查

  • (void)checkAppVersion
    {

    AFHTTPSessionManager * manager = [AFHTTPSessionManager manager];
    NSString *kpath = @"http://itunes.apple.com/lookup?id=1123518551";
    [manager GET:kpath parameters:nil success:^(NSURLSessionDataTask * _Nonnull task, id _Nonnull responseObject) {

      NSDictionary *appInfo = (NSDictionary *)responseObject;
      NSArray *infoContent = [appInfo objectForKey:@"results"];
      NSString *version = [[infoContent objectAtIndex:0] objectForKey:@"version"];
      if ([self compareVersionWithServiceVersion:version])
      {
          NSString * appVersion = [[[NSBundle mainBundle] infoDictionary] objectForKey:@"CFBundleShortVersionString"];
          UIAlertController *alertController = [UIAlertController alertControllerWithTitle:NSLocalizedString(@"微店加更新提示", nil) message:[NSString stringWithFormat:@"%@\n最新版本:%@\n当前版本:%@",responseObject[@"results"][0][@"releaseNotes"], version,appVersion] preferredStyle:UIAlertControllerStyleAlert];
          
          UIAlertAction *sureAction = [UIAlertAction actionWithTitle:NSLocalizedString(@"抢鲜体验", nil) style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
              
              NSURL *appUrl = [NSURL URLWithString:@"itms-apps://itunes.apple.com/app/id1123518551"];
              if ([[UIApplication sharedApplication] canOpenURL:appUrl])
              {
                  if ([UIDevice currentDevice].systemVersion.floatValue < 10.0)
                  {
                      [[UIApplication sharedApplication] openURL:appUrl];
                  }
                  else
                  {
                      [[UIApplication sharedApplication] openURL:appUrl options:@{UIApplicationOpenURLOptionUniversalLinksOnly:@NO} completionHandler:^(BOOL success) {
                          NSLog(@"跳转设置%@", success ? @"成功" : @"失败");
                      }];
                      
                  }
              }
              
          }];
          [alertController addAction:sureAction];
          
          UIAlertAction *cancelAction = [UIAlertAction actionWithTitle:NSLocalizedString(@"我偏不", nil) style:UIAlertActionStyleCancel handler:^(UIAlertAction * _Nonnull action) {
              
          }];
          [alertController addAction:cancelAction];
          
          [self.window.rootViewController presentViewController:alertController animated:YES completion:nil];
      }
    

    } failure:^(NSURLSessionDataTask * _Nonnull task, NSError * _Nonnull error) {

      NSLog(@"查询iTunes应用信息错误:%@",error.description);
    

    }];
    }

  • (BOOL)compareVersionWithServiceVersion:(NSString *)servierVersion
    {
    NSLog(@"商店的版本是 %@",servierVersion);
    NSArray * serviceArr = [servierVersion componentsSeparatedByString:@"."];

    NSString * appVersion = [[[NSBundle mainBundle] infoDictionary] objectForKey:@"CFBundleShortVersionString"];
    NSLog(@"当前的版本是 %@",appVersion);
    NSArray * appArr = [appVersion componentsSeparatedByString:@"."];

    if (!serviceArr.count){
    return NO;
    }
    else
    {
    NSInteger compare = 0;
    if (serviceArr.count >= appArr.count)
    {
    compare = appArr.count;
    }
    else
    {
    compare = serviceArr.count;
    }
    for (int i = 0; i < compare; i++)
    {
    if ([serviceArr[i] integerValue] > [appArr[i] integerValue])
    {
    return YES;
    }
    else if ([serviceArr[i] integerValue] == [appArr[i] integerValue])
    {
    continue;
    }
    else
    {
    return NO;
    }
    }
    return NO;
    }
    }

IMG_5885.PNG

相关文章

  • 提示app 版本更新

    开发中我们可能会遇到这样的需求,当AppStore中有新版本迭代更新,在用户点开APP的时候弹框提醒客户去AppS...

  • app提示版本更新

    下面的 sender[@"version"] 就是获取的版本号 注意是String类型的 2 . 比较appSto...

  • APP版本更新提示

    本文将针对APP新版本提示为大家介绍两种方法,第一种方法是针对已将上线的APP,第二种针对没有上线的APP. 方式...

  • APP 版本更新提示

    //版本检查 (void)checkAppVersion{AFHTTPSessionManager * manag...

  • App提示更新bug

    问题描述:App提示更新,但是等更新以后发现实际根本没更新,还是原先的版本,App还是在提示更新,结果继续更新,等...

  • 上架APP进行版本升级检测

    文章来源:iOS-App版本更新提示AppDelegate.m文件: 提示更新的界面增加:

  • 菜鸟教程——实现一句代码实现app更新检测

    版本更新提示是app必备功能,它可以有效提示用户更新。常用的更新提示无非有两种。一种是从苹果api获取版本信息,提...

  • ionic版本更新

    问题描述:启动APP时检测是否有新版本需要更新,提示进行更新 解决思路: 1.从服务器获取版本号,与当前app版本...

  • QQ等APP版本更新(iOS)

    每个APP都会涉及版本更新的问题,所以APP每次启动有新版本的话都会提示版本更新,和新功能 下面我们来看一下效果图...

  • 不知道大家对更新怎么看?到底需不需要每次都要更新啊?

    手机经常提示要更新,版本要升级,我瞟了一眼,该干该就去干啥,懒得更新。 以前,不论哪个app提示更新,我就赶紧更新...

网友评论

      本文标题:APP 版本更新提示

      本文链接:https://www.haomeiwen.com/subject/ktoecxtx.html