#define APPID @"Apple ID"
//1、cn代表中国。在Safari浏览器打开链接是中文介绍
NSString *urlStr = [NSString stringWithFormat:@"https://itunes.apple.com/cn/app/id%@", APPID];
//2、us代表美国。在Safari浏览器打开链接是英文介绍
NSString *urlStr = [NSString stringWithFormat:@"https://itunes.apple.com/us/app/id%@", APPID];
//3、和1跳转相同
NSString *urlStr = [NSString stringWithFormat:@"https://itunes.apple.com/cn/app/apple-store/id%@", APPID];
//4、和2跳转相同
NSString *urlStr = [NSString stringWithFormat:@"https://itunes.apple.com/app/id%@", APPID];
//5、以 itms-apps:// 或 https:// 开头的应用详情页链接,跳转到AppStore
NSString *urlStr = [NSString stringWithFormat:@"itms-apps://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=%@", APPID];
//6、以 itms:// 开头的应用详情页连接,会跳转到 iTunes Store,打开的仍然是应用的下载页
NSString *urlStr = [NSString stringWithFormat:@"itms://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=%@", APPID];
//打开链接地址
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:urlStr]];
iTunes APP 跳转
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 一,app跳转到safari 二,跳转到指定QQ号 判断是否安装qq
- 解决方案一: 如下图 将Maps设置为NO,再重新打包上传。 解决方案二: 上传.geojson文件 在xcode...
- 第一次上传,卡在一直卡在authenticating with the iTunes Store,取消后第二次上传...
- 终端执行三条命令完美解决 1. cd ~ 2. mv .itmstransporter/ .old_itmstra...
- 苹果悄然推出 iTunes 12.6.3 App Store 回来了 苹果近日悄悄推出了 iTunes 12.6....