跳转到APP Store,检查版本更新

    xiaoxiao2026-08-07  4

    检查版本是否更新

    dispatch_queue_t queue1 = dispatch_queue_create("apns-unregMapping", NULL);

        dispatch_async(queue1, ^{

            NSURL *url = [NSURL URLWithString:@"https://itunes.apple.com/lookup?id=1107864826"];

            NSURLRequest *req = [NSURLRequest requestWithURL:url];

            NSURLSession *session = [NSURLSession sharedSession];

            NSURLSessionDataTask *task = [session dataTaskWithRequest:req

                                                    completionHandler:

                                          ^(NSData *data, NSURLResponse *response, NSError *error) {

                                              

                                              

                                              NSDictionary *resultDic=[NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingMutableLeaves error:nil];

                                              

                                              NSString *versionStr =[[[resultDic objectForKey:@"results"] objectAtIndex:0] valueForKey:@"version"];

                                              

                                              NSDictionary *infoDic=[[NSBundle mainBundle] infoDictionary];

                                              NSString *currentVersionStr = [infoDic valueForKey:@"CFBundleShortVersionString"];

                                              

                                              NSLog(@"   ===banben====   %@, %@", currentVersionStr, versionStr);

                                              

                                              if (![currentVersionStr isEqualToString:versionStr]) {

                                                  [[NSUserDefaults standardUserDefaults] setBool:YES forKey:@"haveNewVersion"];

                                              } else {

                                                  [[NSUserDefaults standardUserDefaults] setBool:NO forKey:@"haveNewVersion"];

                                              }

                                              [[NSUserDefaults standardUserDefaults] synchronize];

                                              

                                          }];

            

            [task resume];

        });

    跳转到APP Store

    [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"itms://itunes.apple.com/cn/app/aimer-cam/id1107864826?mt=8"]];

    id后面的是appid号,具体操作步骤如下

    1、打开iTunes, 点击应用程序输入要查询的app,

    2、打开浏览器

    图中红色框内就是ID号

    转载请注明原文地址: https://ju.6miu.com/read-1310927.html
    最新回复(0)