Stefan
Stefan

Reputation: 29017

Textmessage containing an appstore link

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

Upvotes: 0

Views: 1297

Answers (1)

jtbandes
jtbandes

Reputation: 118761

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 http://grab.by/Eqq

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"]];

Upvotes: 2

Related Questions