Possible duplicate:
Is it possible to register an http + domain URL pattern for iPhone applications such as YouTube and Maps?
I know that I can create a custom URL scheme and run my application with it. So I can catch a URL like this:
myapp:
and open myapp showing user id id = 1.
But as far as I know, the YouTube app went a little different using this URL:
http://youtube.com/v/<ID>
The iPhone will catch the http scheme, but will start from the youtube address and open the YT app.
Is something like this possible with my own application, or is it some kind of private api? Can I somehow launch the application by opening the url:
http:
or is it even impossible?
source share