iPhone 应用程序链接到应用程序商店,但显示空白页面而不是要下载的应用程序
我正在 iPhone 上制作一个应用程序,并且有一个链接到 appStore 的按钮,以便下载另一个应用程序。
我使用下面的代码打开 safari,而不是在链接上显示 Twitter 应用程序,而是显示一个空白页面。
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"http://itunes.apple.com/us/app/twitter/id333903271?mt=8"]];
有人知道如何解决这个问题吗?
I´m making an app on iphone and i have a button that links to the appStore in order to download another app.
I´m using the code below that opens safari and instead of showing the twitter app the his on the link, show a blank page.
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"http://itunes.apple.com/us/app/twitter/id333903271?mt=8"]];
Anyone knows how to solve this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
正在使用模拟器,它没有应用程序商店,所以它当然不会显示它......猜测它会在真实设备上显示。
Was using the simulator, it doesn´t have a app store so offcourse it wouldn´t show it... Guessing it will show on a real device.