Connecting the LITE Version to the FULL Version on App Store

前端 未结 2 1761
深忆病人
深忆病人 2021-02-11 07:55

OK, so I have the full version of my application up and running on the App-Store. Now I\'m working on the lite version; I placed a button in it that supposes to direct the user

2条回答
  •  一整个雨季
    2021-02-11 08:19

    I have used the following - link changed to obscure customer ;-)

    NSString *iTunesLink = @"http://itunes.apple.com/gb/app/wired-news-uk/id435728870?mt=8";
    [[UIApplication sharedApplication] openURL:[NSURL URLWithString:iTunesLink]];
    

    All I do is grab the link via iTunes itself. Of course that means the app you wish to link to already has to exist in iTunes. However I understand it is possible to anticipate a link after creating the app in iTunesConnect - though I haven't had the need to do this yet.

提交回复
热议问题