AppStore中应用程序更新版本的直接链接

时间:2012-01-05 10:39:13

标签: ios app-store hyperlink

在我的应用程序中,可以通过appstore下载我的应用程序的新版本。 当用户按下此链接时,iPhone会在获取AppStore屏幕之前打开一些screes。 那些屏幕,似乎是浏览器的屏幕,但我不确定。 如何在AppStore中创建指向我的应用程序的直接链接? 谢谢, 的Eyal。

1 个答案:

答案 0 :(得分:2)

itms-apps://itunes.com/apps/APPNAME

示例:

NSURL *url = [NSURL URLWithString:@"itms-apps://itunes.com/apps/trenes"];
[[UIApplication sharedApplication] openURL:url];