How to link to the page of a single author/company page on the App Store?

前端 未结 10 597
花落未央
花落未央 2020-12-14 23:01

I would like to provide a link to all the apps of a single author/company on the App Store from my iPhone app.

Let\'s take Ngmoco for instance. Clicking on the follo

相关标签:
10条回答
  • 2020-12-14 23:27

    Here's what I found works for me, redirecting from within an iPhone app. This goes directly to the App Store app:

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

    Simply substitute in the name of the app developer for "companyname".

    0 讨论(0)
  • 2020-12-14 23:27

    The answer by @JohnFricker worked best for me. Although it's worth noting that I had to remove all spaces and punctuation from the developer name. I tried it with spaces removed but not punctuation and it still didn't work.

    0 讨论(0)
  • 2020-12-14 23:29
    NSString *str = @"itms-apps://ax.search.itunes.apple.com/WebObjects/MZSearch.woa/wa/search?media=software&term=glbasic";
    [[UIApplication sharedApplication] openURL: [NSURL URLWithString:str]];
    

    That seems to work for me!!

    0 讨论(0)
  • 2020-12-14 23:31

    simply go to itunes than click on the name of your company , copy and paste it whereever you want . i think previous answers were usefull for previous versions of itunes

    0 讨论(0)
提交回复
热议问题