views:

124

answers:

1

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

+1  A: 

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.

copying iTunes 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"]];
jtbandes
Note that a URL shortener like http://bit.ly/ would be a good idea, as text messages are limited in characters.
ceejayoz