views:

1044

answers:

2

Is there any way to check if a URL scheme is currently registered on the phone... with javascript?

+1  A: 

No, not from a webpage.

Andrew Grant
As far as I know, there's no way to do it from native code, either.
Brent Royal-Gordon
I thought I recalled a way that apps could check this but I'm probably wrong.
Andrew Grant
Thanks for the quick answer. As far as from native code, it is possible via openUrl: to check, so I've read... not tested
+3  A: 

Not seamlessly. But there is a way similar to checking if a pop-up was blocked or not.

When you try a URL scheme which is not supported, Safari will warn the user that it doesn't know what to do with it and stay on the same page.

So if you gave your app-call some time to activate, say 300 ms, and then do something else to respond to the non-existence of the scheme.

It's not the prettiest but it works:

function startIThrown(){
  document.location = 'ithrown://restart';
  setTimeout(function(){
    if(confirm('You do not seem to have iThrown installed, do you want to go download it now?')){
      document.location = 'http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=293049283&mt=8&uo=6';
    }
  }, 300);
}

<a href="#" onclick="startIThrown()">Restart iThrown</a>
Maarten
nice workaround :)
William