原文地址: iOS通過iTunes search檢測版本更新,並提示使用者更新。
如果我們要檢測app版本的更新,那麼我們必須擷取當前運行app版本的版本資訊和appstore 上發布的最新版本的資訊。
當前運行版本資訊可以通過info.plist檔案中的bundle version中擷取:
[cpp] view plain copy print ? NSDictionary *infoDic = [[NSBundle mainBundle] infoDictionary]; CFShow(infoDic); 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 = 應用程式識別碼;
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]];
[cpp] view plain copy print ? -(void)onCheckVersion:(NSString *)currentVersion { NSString *URL = APP_URL; 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:@"trackViewUrl"]; UIAlertView *alert = [[[UIAlertView alloc] initWithTitle:@"更新" message:@"有新的版本更新,是否前往更新。" delegate:self cancelButtonTitle:@"關閉" otherButtonTitles:@"更新", nil] autorelease]; [alert show]; } } }