iOS开发系列iOS知识点iOS 开发

iOS跳转AppStore相关

2016-02-17  本文已影响5888人  JerryLMJ

跳转到应用官方下载页

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

版权声明:出自MajorLMJ技术博客的原创作品 ,转载时必须注明出处及相应链接!

上一篇下一篇

猜你喜欢

热点阅读