I have a custom URL scheme for my iOS app, and I want to be able to email a link to someone that will either launch the app if it's on the device, or take them to the app store if they don't have it.

I'd like to be able to send myapp://someurl and have that either launch or go to myapp on the appstore, but I don't think this will work out of the box.

Instead, I'm thinking of creating a link that loads some javascript which will try myapp://someurl, and if that fails will instead load the app store link.

My javascript knowledge is crappy. I can set window.location to perform the redirect, but there doesn't seem to be a way to catch errors from that in order to perform another action if that fails.

Anyone know how to do this?

link|improve this question

There is a really good answer here: stackoverflow.com/questions/1108693/… – djsmith Mar 27 at 17:22
feedback

2 Answers

up vote 1 down vote accepted

check Is it possible to register a http+domain-based URL Scheme for iPhone apps, like YouTube and Maps?

You do however need to host the page containing the script yourself, since javascript inside email doesn't work

link|improve this answer
Thanks. That's pretty much what I was looking for. – Silromen Jan 12 '11 at 18:32
feedback

There is no good way to achieve this. You can launch an app via a URL but there is no way to test whether an app is installed first.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.