iOS URL Schemes allow web sites to launch apps like so:
twitter://timelinelaunches Twittergooglechrome://google.comlaunches Chromefb://rootlaunches Facebook______________launches Safari? (nothttp://, since Safari won't launch fromUIWebView)
What custom url scheme triggers Safari to launch (even from within another app's UIWebView)?
To clarify, I'm not looking for [[UIApplication sharedApplication] openURL: request.URL];
Instead I'm looking for how a website can allow a user to launch Mobile Safari from within the UIWebView of another app (Google Chrome, Twitter, etc.).
Example HTML links that pop open other apps:
<a href="twitter://timeline">Open Twitter</a>
<a href="googlechrome://google.com">Open site in Chrome</a>
<a href="fb://root">Open Facebook</a>
I'm looking for something similar to these non-working examples:
<a href="safari://google.com">Open Safari [Doesn't work]</a>
<a href="webkit://google.com">Open Webkit [Doesn't work]</a>
Here's a jsFiddle of the same: http://jsfiddle.net/gXLjF/9/embedded/result/
Try opening this URL in iOS Google Chrome and opening Safari with the links.