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

前端 未结 10 600
花落未央
花落未央 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:05

    Here's the latest answer with a link to Apples Dev guidelines and examples.

    // Goes to App Store
    NSString *iTunesLink = @"itms-apps://itunes.com/apps/gameloft/";  
    [[UIApplication sharedApplication] openURL:[NSURL URLWithString:iTunesLink]];
    

    How to Launch App store from iOS Application

    How Apple says to do it - Company Store link

提交回复
热议问题