- 以
itms-apps://或https://开头的应用详情页链接,跳转到AppStore

NSString * url = [NSString stringWithFormat:@"itms-apps://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=%@",@"1014939463];
或者
NSString * url = [NSString stringWithFormat:@"https://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=%@",@"1014939463];
// 惊奇的发现https://开头的连接也可以跳转到appstore
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:url]];
- 以
itms://开头的应用详情页连接,跳转到 iTunes Store,打开的仍然是应用的下载页

NSString * url = [NSString stringWithFormat:@"itms://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=%@",@"1014939463];
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:url]];
跳转到应用评分页
itms-apps://和itms://开头的链接都可以,而此时https:// 开头的链接不可以
NSString * url = [NSString stringWithFormat:@"itms-apps://itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?type=Purple+Software&id=%@",@"1014939463"];
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:url]];
本文详细介绍了如何使用不同格式的链接跳转到AppStore或iTunes的应用详情页及评分页,包括itms-apps://、itms://与https://开头的链接,并对比了它们之间的差异。

3357

被折叠的 条评论
为什么被折叠?



