从 iPhone 应用程序链接 appStore 上的开发者页面

发布于 2024-09-08 04:32:36 字数 148 浏览 5 评论 0原文

所以我知道如何从我的 iPhone 应用程序中打开 appStore 上的应用程序页面。

有没有办法打开我公司的页面?在我的 Mac 上的 iTunes 上我可以做到这一点,但在 iPhone 中使用该 URL 我不能(或者我做得不对)。

提前致谢。

So I know how to open an app page on the appStore from within my iPhone app.

Is there a way to open my company's page? On iTunes on my mac I can do that, but using that URL in the iPhone I can't (or I'm not doing it right).

Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

泪冰清 2024-09-15 04:32:36

这是关于这个主题的一篇很棒的文章:http://bjango.com/articles/ituneslinks/

引自文章:

http://itunes.com/apps/developer — 按开发人员搜索所有应用程序

也可以链接到一位开发人员的所有应用程序,但有一个问题。在 Mac 或 PC 上,
这将打开 iTunes 并登陆开发者页面。在 iPhone 或 iPod touch 上,它会起到一些作用
跳舞,打开 MobileSafari,然后打开 iTunes,然后打开 App Store 应用程序。不理想,有点丑陋且缓慢,但是
它最终到达那里。

如果您想隐藏重定向并加快进程,Apple 建议使用 NSURLConnection

This is a great article on this subject: http://bjango.com/articles/ituneslinks/

Quote from the article:

http://itunes.com/apps/developer — Search for all apps by developer

It’s also possible to link to all apps by one developer, but there’s a catch. On a Mac or a PC,
this will open iTunes and land on a developer’s page. On an iPhone or iPod touch it’ll do a bit of a
dance, opening MobileSafari, then iTunes, then the App Store app. Not ideal, a bit ugly and slow, but
it gets there in the end.

If you’d like to hide the redirections and speed up the process, Apple recommend using NSURLConnection.

凉栀 2024-09-15 04:32:36

这可以防止它像平常那样跳舞

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

this prevents it to do little dance it does normally

 NSString *iTunesLink = @"itms-apps://itunes.com/apps/companyname/";
 [[UIApplication sharedApplication] openURL:[NSURL URLWithString:iTunesLink]];
欢你一世 2024-09-15 04:32:36

我在 iOS 8、9 中使用了这样的 URL:

itms-apps://itunes.apple.com/developer/tivogi/id507966848

其中 tivogi 是开发人员的帐户名称,< code>id507966848 是您的开发者 ID。

您可以在任何浏览器中找到适合您的正确链接:只需转到开发人员页面,复制网址,然后将方案更改为 itms-apps

I used such URL in iOS 8, 9:

itms-apps://itunes.apple.com/developer/tivogi/id507966848

where tivogi is the developer's account name and id507966848 is the your developer id.

You can find correct link for you in the any browser: just go to developer page, copy url, and change scheme to itms-apps

家住魔仙堡 2024-09-15 04:32:36

在 IOS SDK 6 及更高版本中,使用以下链接从应用程序打开开发人员链接

[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"itms://itunes.apple.com/WebObjects/MZStore.woa/wa/viewArtist?artistId=524402507"]];

…………

In IOS SDK 6 and above, use below link for open developer link from app

[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"itms://itunes.apple.com/WebObjects/MZStore.woa/wa/viewArtist?artistId=524402507"]];

........

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文