- //跳轉到應用頁面
- NSString *str = [NSString stringWithFormat:@"http://itunes.apple.com/us/app/id%d",appid];
- [[UIApplication sharedApplication] openURL:[NSURL urlWithString:str]];
- //跳轉到評價頁面
- NSString *str = [NSString stringWithFormat: @"itms-apps://ax.itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?type=Purple+Software&id;=%d", appid];
- [[UIApplication sharedApplication] openURL:[NSURL urlWithString:str]];
- 必須在真機上纔有效,模擬機上無效。
若是評論頁面沒法打開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