3 回答

TA貢獻(xiàn)1831條經(jīng)驗(yàn) 獲得超10個(gè)贊
UIWebView
UIWebViewDelegate
webView:shouldStartLoadWithRequest:navigationType:
window.location = "fake://myApp/something_happened:param1:param2:param3";
NO
performSelector
.

TA貢獻(xiàn)1863條經(jīng)驗(yàn) 獲得超2個(gè)贊
function execute(url) { var iframe = document.createElement("IFRAME"); iframe.setAttribute("src", url); document.documentElement.appendChild(iframe); iframe.parentNode.removeChild(iframe); iframe = null;}
execute
添加回答
舉報(bào)