獲得appstore裡面app的最新的版本資訊,進行版本更新,appstoreapp

來源:互聯網
上載者:User

獲得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的表徵圖這裡不再寫了

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.