iOS通過iTunes search檢測版本更新,並提示使用者更新!

來源:互聯網
上載者:User

原文地址: 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];           }       }   }  

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.