獲得appstore裡面app的最新的版本資訊,進行版本更新,appstoreapp
版本更新有兩種方式
一種是從伺服器獲得最新的版本資訊和當前app的版本進行比較
另外一種是獲得appStore上最新的版本資訊和當前的app的版本進行比較
現在我來說一下如何通過appStore獲得最新的版本(參考下面的蘋果的官方文檔)
https://affiliate.itunes.apple.com/resources/documentation/itunes-store-web-service-search-api/
以獲得QQ的版本資訊為例子:可以獲得QQ的表徵圖,版本號碼和bundleID
開啟這個連結
http://itunes.apple.com/search?term=QQ&country=CN&entity= iPadSoftware
term:代表app的名稱
country:代表國家
entity:代表類型可選得有software, iPadSoftware, macSoftware,不說大家也明白
這個串連開啟以後會獲得一個JS的檔案,內容是json格式的長這個樣子
解析json檔案獲得app的資訊
下面直接上代碼
NSString *appName = @"QQ"; // @"app的名稱" NSString *urlStr = [NSString stringWithFormat:@"http://itunes.apple.com/search?term=%@&country=CN&entity=software", appName]; NSURL *url = [NSURL URLWithString:urlStr]; NSData *json = [NSData dataWithContentsOfURL:url]; NSDictionary *dict = [NSJSONSerialization JSONObjectWithData:json options:0 error:NULL];//解析json檔案 NSArray *results = [dict objectForKey:@"results"]; NSDictionary *result = [results objectAtIndex:0]; NSString *versionStr = [result objectForKey:@"version"];//獲得app的版本 self.version.text = versionStr; NSString * bundle = [result objectForKey:@"bundleId"];//獲得app的id self.bundle.text = bundle;
根據欄位:artworkUrl100還能獲得app的表徵圖這裡不再寫了