转载自:http://blog.csdn.net/zengconggen/article/details/6789420

NSString *str = [NSString stringWithFormat:@"http://itunes.apple.com/us/app/id%d", 436957167];
[[UIApplication sharedApplication] openURL:[NSURL urlWithString:str]];

其中,436957167 是 app 的 id

附:跳转到某 app 的评价页面:

NSString *str = [NSString stringWithFormat:@"itms-apps://ax.itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?type=Purple+Software&id=%d", 436957167];  
[[UIApplication sharedApplication] openURL:[NSURL urlWithString:str]];










相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-12-12
  • 2021-12-24
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-07-22
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-02
相关资源
相似解决方案