I want to have a feature in my app where the user can send an email to a friend with the iTunes URL to my application. How is it possible?
Thanks.
|
feedback
|
|
Rather than the long and confusing urls that you usually see, you can create App Store links that are much simpler and more logical. The iTunes Store has a hidden URL format that’s much more logical. Depending on what you’re linking to, you just need to build a URL in one of these formats:
Just include a url of this format in the body of the email you create. (Note that spaces might cause problems, but I found that omitting them entirely worked for me - http://itunes.com/app/FrootGroove redirects to the app called "Froot Groove".) (Also note that if this doesn't work for you, the iTunes link maker is here) Your code will be something like this (extracted from mine, anonymised and not tested)
You can do better things in iPhone 3.0, but I can't talk about those yet. | |||||||||||||
feedback
|
|
In OS 3.0 you can use the MessageUI framework to do this without leaving the app (using Jane's code as the fallback for pre-3.0 devices):
Note that your class must adopt the | |||
|
feedback
|
|
By the way, the link to the application by its ID can be found by visiting the Apps Store for your application and clicking on the "Tell A Friend" -- then send an email to yourself. I found this to be very informative. | |||
feedback
|
|
This code generates the app store link automatically based on the app name, nothing else is required, drag & drop:
It gives you a link like http://itunes.com/app/angrybirds | |||||||
feedback
|