Hi,
how do I build a link, which opens the appstore and shows an app (something like itms://myapplication?action=show). I want to send that link via a text message (over the web). All I've found was the ITMS link generator.
Best regards,
Stefan
Hi,
how do I build a link, which opens the appstore and shows an app (something like itms://myapplication?action=show). I want to send that link via a text message (over the web). All I've found was the ITMS link generator.
Best regards,
Stefan
To get the link to an application, use the iTunes Link Maker, as you found, or: open iTunes, right-click on the desired app, and choose Copy Link.
This link will open the App Store when it's accessed on an iPhone. I don't know how you're sending this via text message, but you can just include that URL. To open it in code:
[[UIApplication sharedApplication] openURL:
[NSURL URLWithString:@"http://itunes.apple.com/blah"]];