美文网首页
iOS 版本检测更新

iOS 版本检测更新

作者: JohnayXiao | 来源:发表于2017-11-15 10:02 被阅读18次
#pragma mark - 检查更新
- (void)checkVersion
{
    if ([AppID length] < 1) {
        return;
    }
    
    NSString *url = [NSString stringWithFormat:@"http://itunes.apple.com/lookup?id=%@",AppID];
    NSMutableURLRequest *urlRequest = [[NSMutableURLRequest alloc] init];
    [urlRequest setURL:[NSURL URLWithString:url]];
    [urlRequest setHTTPMethod:@"POST"];
    
    NSData *returnData = [NSURLConnection sendSynchronousRequest:urlRequest returningResponse:nil error:nil];
    NSDictionary *jsonDic = [NSJSONSerialization JSONObjectWithData:returnData options:0 error:nil];
    
    NSArray *infoArr = [jsonDic objectForKey:@"results"];
    if ([infoArr count]) {
        NSDictionary *releaseInfo = [infoArr objectAtIndex:0];
        NSString *appStoreVersion = [releaseInfo objectForKey:@"version"];
        
        // 这里显示的是appstore 上面设置的号码.
        NSLog(@"appstore 版本为:%@ \n 当前版本为:%@",appStoreVersion,VERSION);
        
        if ([VERSION compare: appStoreVersion] == NSOrderedAscending) {
            // 弹窗
            NSArray *items = @[MMItemMake(@"立即更新", MMItemTypeHighlight, ^(NSInteger index) {
                NSURL *url = [NSURL URLWithString:DownloadUrl];
                NSLog(@"跳转下载地址 : %@", DownloadUrl);
                [[UIApplication sharedApplication] openURL:url];
            }),MMItemMake(@"稍后提醒", MMItemTypeNormal, nil)];
            
            [[[MMAlertView alloc] initWithTitle:@"提示" detail:@"出新版本啦,快点更新吧!" items:items]showWithBlock:nil];
            
        }
    }
}

相关文章

  • iOS检测版本更新

    利用iTunes接口检查App版本更新

  • iOS 检测版本更新

  • iOS检测版本更新

    效果图 具体实现代码参考源码https://github.com/wolfhous/HSUpdateApp 文件小...

  • iOS 版本检测更新

  • iOS 检测版本更新

    在苹果的 app store 条文中,是不允许新版本提示的, 但是只要不让那些审核员知道有这个功能就可以了。启动的...

  • iOS 检测版本更新

    基于良好的用户体验,当在appStroe上线了新的版本时,提醒用户更新”新版本“是必不可少的。 版本更新的...

  • iOS检测版本更新

    效果图 具体实现代码参考源码https://github.com/wolfhous/HSUpdateApp 文件小...

  • iOS 版本检测更新

    iOS7开始就添加了应用自动更新,该提示更新适用于用户关闭了自动更新应用功能的情况下,现实中很多iPhone用户都...

  • iOS 版本检测更新

    每个正在迭代更新的项目,都必不可少的要检测是否发布了最新的版本,来保证以最优化的版本服务用户。其实我并不赞成一打开...

  • ReactNative App更新下载(Android+iOS)

    APP涉及到版本更新(非热更新),版本检测下载App,Android和iOS实现方式不同 1.Android直接和...

网友评论

      本文标题:iOS 版本检测更新

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