Mots clés : iphonecocoa-touchuiwebviewiphone
98
window.location = "fake://myApp/something_happened:param1:param2:param3";
89
function execute(url) { var iframe = document.createElement("IFRAME"); iframe.setAttribute("src", url); document.documentElement.appendChild(iframe); iframe.parentNode.removeChild(iframe); iframe = null; }
78
window.location = "app://action/foo"; window.location = "app://action/bar";
waitingForMessage = false; function MsgProcessed(){ waitingForMessage = false; } function SyncLaunchURL(url){ if (waitingForMessage){ setTimeout(function(){SyncLaunchURL(url)},100); }else{ window.location = url waitingForMessage = true; } } SyncLaunchURL("app://action/foo"); SyncLaunchURL("app://action/bar");