本文主要是介绍程序跳转到appstore中指定的应用,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
NSString *str = [NSString stringWithFormat:
@"itms-apps://ax.itunes.apple.com/WebObjects/MZStore.woa /wa/viewContentsUserReviews?type=Purple+Software&id=%d",
myAppID ];
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:str]];
其中myAppID为itunesconnect中的应用程序id
2.进入首页
NSString *str = [NSString stringWithFormat:
@"itms-apps://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=%@",
m_myAppID ];
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:str]];
这篇关于程序跳转到appstore中指定的应用的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!