I've been trying out the URL schemes in the iPhone SDK and I have got my application to launch using a custom URL scheme like "myap://Dosomething" but that is not really practical for what I want. Is it possible to register a scheme somehow that would allow links in emails like "http://www.mydomain.com/" to launch my application, like app store links and youtube links do?

link|improve this question
How did you end up solving this? I have the same need, I want to send our users email with regular http links, and if the user has our app installed I'd like it to launch our app when the user clicks the link. If they don't have the app installed I'd like it to just go to the url with mobile safari. – ToddH Sep 19 '11 at 21:39
were you able to implement this without a redirect? – chimerical Oct 6 '11 at 0:39
feedback

2 Answers

If you want the link to be clickable in Mail you have to use an http:// link which will launch Safari. This means you should create a page on a webserver somewhere that return an HTTP 303 redirect (See Other) with your myApp:// url. This should cause Safari to launch your application. If that fails you can try a <meta> redirect, and as a last resort a standard <a href="myApp://">Click me</a> link.

link|improve this answer
feedback

To do that you would have to register and host that domain and set it up to redirect to the URL scheme. How to set up the redirect depends on what web server you're running. Why do you think myapp:// is impractical?

link|improve this answer
A meta redirect is probably sufficient (perhaps even better as an error page can be shown if the app isn't installed) – rpetrich Feb 9 '10 at 12:39
feedback

Your Answer

 
or
required, but never shown