ios點擊鏈接直接跳轉到 App Store 指定應用下載頁面


  1. //跳轉到應用頁面  
  2. NSString  *str = [NSString stringWithFormat:@"http://itunes.apple.com/us/app/id%d",appid];  
  3. [[UIApplication sharedApplication] openURL:[NSURL urlWithString:str]]; 
  4. //跳轉到評價頁面 
  5. NSString  *str = [NSString stringWithFormat: @"itms-apps://ax.itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?type=Purple+Software&id;=%d", appid];    
  6. [[UIApplication sharedApplication] openURL:[NSURL urlWithString:str]]; 
  7. 必須在真機上才有效,模擬機上無效。

 

 

如果評論頁面無法打開appstore,用下面這行代碼

NSString *str = [NSString stringWithFormat:@"itms-apps://itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?type=Purple+Software&onlyLatestVersion=true&pageNumber=0&sortOrdering=1&id=%@",appID];

[[UIApplication sharedApplication] openURL:[NSURL urlWithString:str]]; 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM