iOS 版本更新 (转)

如果我们要检测app版本的更新,那么我们必须获取当前运行app版本的版本信息和appstore 上发布的最新版本的信息。

当前运行版本信息可以通过info.plist文件中的bundle version中获取:

[cpp] view plaincopy

  1. NSDictionary *infoDic = [[NSBundle mainBundle] infoDictionary];
  2. CFShow(infoDic);
  3. NSString *appVersion = [infoDic objectForKey:@"CFBundleVersion"];

这样就获取到当前运行的app的版本了

要获取当前app store上的最新的版本,有两种方法,

一、在某特定的服务器上,发布和存储app最新的版本信息,需要的时候向该服务器请求查询。

二、从app store上查询,可以获取到app的作者,连接,版本等。官方相关文档

www.apple.com/itunes/affiliates/resources/documentation/itunes-store-web-service-search-api.htm

具体步骤如下:
1,用 POST 方式发送请求:
http://itunes.apple.com/search?term=你的应用程序名称&entity=software

更加精准的做法是根据 app 的 id 来查找:
http://itunes.apple.com/lookup?id=你的应用程序的ID

#define APP_URL http://itunes.apple.com/lookup?id=你的应用程序的ID

你的应用程序的ID 是 itunes connect里的 Apple ID

2,从获得的 response 数据中解析需要的数据。因为从 appstore 查询得到的信息是 JSON 格式的,所以需要经过解析。解析之后得到的原始数据就是如下这个样子的:
{  
    resultCount = 1;  
    results =     (  
                {  
            artistId = 开发者 ID;  
            artistName = 开发者名称; 
            price = 0; 
            isGameCenterEnabled = 0;  
            kind = software;  
            languageCodesISO2A =             (  
                EN  
            ); 
            trackCensoredName = 审查名称;  
            trackContentRating = 评级;  
            trackId = 应用程序 ID;  
            trackName = 应用程序名称";  
            trackViewUrl = 应用程序介绍网址;  
            userRatingCount = 用户评级;  
            userRatingCountForCurrentVersion = 1;  
            version = 版本号;  
            wrapperType = software; 
      }  
    );  
}

然后从中取得 results 数组即可,具体代码如下所示:

NSDictionary *jsonData = [dataPayload JSONValue];  
NSArray *infoArray = [jsonData objectForKey:@"results"];  
NSDictionary *releaseInfo = [infoArray objectAtIndex:0];  
NSString *latestVersion = [releaseInfo objectForKey:@"version"];  
NSString *trackViewUrl = [releaseInfo objectForKey:@"trackViewUrl"];

如果你拷贝 trackViewUrl 的实际地址,然后在浏览器中打开,就会打开你的应用程序在 appstore 中的介绍页面。当然我们也可以在代码中调用 safari 来打开它。
UIApplication *application = [UIApplication sharedApplication];  
[application openURL:[NSURL URLWithString:trackViewUrl]];

代码如下:

-(void)onCheckVersion

{

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

//CFShow((__bridge CFTypeRef)(infoDic));

NSString *currentVersion = [infoDic objectForKey:@"CFBundleVersion"];

NSString *URL = @"http://itunes.apple.com/lookup?id=你的应用程序的ID";

NSMutableURLRequest *request = [[NSMutableURLRequest alloc] init];

[request setURL:[NSURL URLWithString:URL]];

[request setHTTPMethod:@"POST"];

NSHTTPURLResponse *urlResponse = nil;

NSError *error = nil;

NSData *recervedData = [NSURLConnection sendSynchronousRequest:request returningResponse:&urlResponse error:&error];

NSString *results = [[NSString alloc] initWithBytes:[recervedData bytes] length:[recervedData length] encoding:NSUTF8StringEncoding];

NSDictionary *dic = [results JSONValue];

NSArray *infoArray = [dic objectForKey:@"results"];

if ([infoArray count]) {

NSDictionary *releaseInfo = [infoArray objectAtIndex:0];

NSString *lastVersion = [releaseInfo objectForKey:@"version"];

if (![lastVersion isEqualToString:currentVersion]) {

//trackViewURL = [releaseInfo objectForKey:@"trackVireUrl"];

UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"更新" message:@"有新的版本更新,是否前往更新?" delegate:self cancelButtonTitle:@"关闭" otherButtonTitles:@"更新", nil];

alert.tag = 10000;

[alert show];

}

else

{

UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"更新" message:@"此版本为最新版本"delegate:self cancelButtonTitle:@"确定" otherButtonTitles:nil, nil];

alert.tag = 10001;

[alert show];

}

}

}

- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex

{

if (alertView.tag==10000) {

if (buttonIndex==1) {

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

[[UIApplication sharedApplication]openURL:url];

}

}

}

时间: 2024-10-24 13:02:13

iOS 版本更新 (转)的相关文章

iOS版本更新的App提交审核发布流程

http://www.2cto.com/kf/201502/378698.html 版本更新的App和新App的发布提交流程略有不同,新的App需要在开发者账号里准备发布证书,添加App的id,关联描述文件等等,这些可以不会的可以百度.在这里只说这些证书都有的情况下的版本更新App的发布过程: 1.首先保证你的电脑上面已经有了开发者账号上面的证书和描述文件,如果没有下载证书和关联文件,但是这个时候有了第一个坑,你的App可能之前是在公司其他工程师的电脑上发布的,或者是外包公司做的,这个时候你从开

iOS版本更新与集成百度地图

App在AppStore上会对应一个地址, 通过这个地址可以获得这个App的版本号, 与当前App的版本号做对比, 如果小于当前的版本号, 进行版本更新. 不论我们需要集成什么的SDK, 都先要获取一个key(需要App的bundleID, 作为唯一标识), 然后下载其的SDK集成到自己的项目里, 这个时候还需要导入一些库进行支持, 然后按照其开发文档操作即可(文档可能会有坑, 多注意.)

iOS 版本更新摘要(三)iOS 8.x

[What's New in iOS 8.x](https://developer.apple.com/library/ios/releasenotes/General/WhatsNewIniOS/Articles/iOS8.html#//apple_ref/doc/uid/TP40014205-SW1 "What's New in iOS 8.x") ####iOS 8.0 #App Extensions iOS 8.0 提供了 app 扩展点,让你可以在系统的选择区域扩展选择区域.

iOS 版本更新摘要(二)iOS 7.1

7.1的更新比较少,就两点(不算 bugs 的话). iOS 7.1更新摘要 (What's New in iOS 7.1) 官网地址:https://developer.apple.com/library/ios/releasenotes/General/WhatsNewIniOS/Articles/iOS7_1.html#//apple_ref/doc/uid/TP40013916-SW1 iOS 7.1 这篇更新日志简要的说明了 7.1 几个关键的新特性.这个版本可以运行在目前的iOS设备

ios 版本更新

-(void)GetUpdate { NSString *nowVersion = [[[NSBundle mainBundle] infoDictionary] objectForKey:@"CFBundleVersion"]; NSString * file =  [NSString stringWithContentsOfURL:[NSURL URLWithString:@"http://itunes.apple.com/lookup?id=***"]]; N

IOS版本更新判定(用以加载引导页)

    //引导页     //判断是否是第一次打开,如果是第一次打开,则显示引导页,否则直接进入程序     //版本     NSString *key = (NSString *)kCFBundleVersionKey;     //新版本号     NSString *version = [NSBundle mainBundle].infoDictionary[key];     //老版本号     NSString *oldVersion = [[NSUserDefaults sta

ios版本更新

//判断有无新版 : http://itunes.apple.com/lookup?id=项目的appid 网络请求返回json块里: //拿当前版本 NSDictionary *infoDic = [[NSBundle mainBundle] infoDictionary]; NSString *appVersion = [infoDic objectForKey:@"CFBundleVersion"]; //拿appstore上的版本 NSArray *infoArray = [J

iOS 版本更新检查

//检查更新 -(void)onCheckVersion { //获取当前版本 NSDictionary *infoDic = [[NSBundle mainBundle] infoDictionary]; NSString *currentVersion = [infoDic objectForKey:@"CFBundleShortVersionString"];//CFBundleVersion //POST 请求获取APPStore上的版本信息 NSString *URL = @

iOS 通知机制简介

ios的通知(消息)机制 ios中提供了两种通知 1.本地通知 本地通知是一个UILocalNotification的实例,包含以下三个重要属性: 调度时间:要使用本地通知,必须指定通知触发的日期以及时间,还可以设置通知的重复间隔,例如按周重复或者按月重复 通知类型:用于指定提示文字信息,操作按钮的标题,应用程序图标上的数字以及要播放的声音 自定义数据:本地通知还可以包含一个自定义数据的字典 设置通知的属性: alertBody:信息内容 alertAction:消息标题 application