Possible Duplicate:
Is it possible to register a http+domain-based URL Scheme for iPhone apps, like YouTube and Maps?
I know I can create a custom URL scheme and launch my application with it. So I can catch the URL like that:
myapp://image/1
and open myapp showing the user image ID=1.
But as far as I'm concerned - the YouTube app behaved a bit different, using an url like this:
http://youtube.com/v/<ID>
the iPhone would catch the http
scheme but starting with youtube address and open YT app.
Is something like this possible with my own app, or is it some private api thing? Can I, somehow, make my app launch on the open of URL:
http://app.myapp.com/image/1
or is it not possible at all?