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,用下面這行代碼app

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];url

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

相關文章
相關標籤/搜索