我正在尝试将我的iphone应用程序的webview控制器重定向到iphone应用程序。所以,如果有人这样做,那么请给我一些示例代码。
我试过这个......
$query = $_SERVER['QUERY_STRING'];
$homeUrl = 'demolink://oauth-response?'.$query;
$tryAgainUrl = 'demolink://oauth-response?'.$query;
答案 0 :(得分:1)
我认为你的答案就在这里:
How to check if an app is installed from a web-page on an iPhone?
接受的答案解释了如果安装了如何重定向到您的应用,或者如果尚未安装则重定向到appstore。
setTimeout(function () { window.location = "https://itunes.apple.com/appdir"; }, 25);
window.location = "appname://";
致 missemisa
的信用