//跳转到应用页面

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

相关文章:

  • 2022-12-23
  • 2021-05-24
  • 2021-09-19
  • 2021-10-29
  • 2021-09-22
  • 2022-12-23
  • 2022-01-03
猜你喜欢
  • 2021-10-29
  • 2021-11-01
  • 2022-12-23
  • 2021-10-29
  • 2021-10-19
相关资源
相似解决方案