找到应用程序的描述链接,在itunes中找到相应的应用,(如下图),点击免费右边的下方向键,选择复制链接,就拿到了对应的app的描述链接

在 iOS 应用中直接跳转到 AppStore 的方法-LMLPHP在 iOS 应用中直接跳转到 AppStore 的方法-LMLPHP

比如:https://itunes.apple.com/cn/app/qi-miao-qing-dan-ren-wu-guan/id406644151?mt=8

然后将 http:// 替换为 itms:// 或者 itms-apps://:

然后打开这个链接地址:
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"itms://itunes.apple.com/gb/app/yi-dong-cai-bian/id391945719?mt=8"]];
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"itms-apps ://itunes.apple.com/gb/app/yi-dong-cai-bian/id391945719?mt=8"]];

这个最好在真机上面测试,在模拟器上测试,会没有效果。
05-08 08:17