应用内直接跳转到Appstore
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了应用内直接跳转到Appstore相关的知识,希望对你有一定的参考价值。
1 ios开发中,应用内直接跳转到Appstore
2 1.进入appstore中指定的应用
3 NSString *str = [NSString stringWithFormat:
4 @"itms-apps://ax.itunes.apple.com/WebObjects/MZStore.woa /wa/viewContentsUserReviews?type=Purple+Software&id=%d",
5 myAppID ];
6
7 [[UIApplication sharedApplication] openURL:[NSURL URLWithString:str]];
8
9 其中myAppID为itunesconnect中的应用程序id
10
11
12
13 2.进入首页
14
15 NSString *str = [NSString stringWithFormat:
16
17 @"itms-apps://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=%@",
18 m_myAppID ];
19 [[UIApplication sharedApplication] openURL:[NSURL URLWithString:str]];
以上是关于应用内直接跳转到Appstore的主要内容,如果未能解决你的问题,请参考以下文章