一步一步學習Swift之(四)玩轉UIWebView

來源:互聯網
上載者:User

標籤:

實現原理:

1.通過UIWebView的stringByEvaluatingJavaScriptFromString方法來觸發指令碼

2.通過自訂串連來觸發oc代碼

實現過程

@IBOutlet weak var webView: UIWebView!    override func viewDidLoad() {        super.viewDidLoad()       webView.loadRequest(NSURLRequest(URL: NSURL(string: "http://passport.cnblogs.com/user/signin")!))        webView.delegate=self    }    //串連改變時    func webView(webView: UIWebView, shouldStartLoadWithRequest request: NSURLRequest, navigationType: UIWebViewNavigationType) -> Bool{       var rurl =  request.URL?.absoluteString        if (rurl!.hasPrefix("ios:")){          var method =  rurl!.componentsSeparatedByString("@")[1]            if method == "signin_go"{                 signin_go()            }            return false        }       return true    }    //載入完成時    func webViewDidFinishLoad(webView: UIWebView){        //注入指令碼,這個指令碼把登入方法js重寫為串連        var jsPath =  NSBundle.mainBundle().pathForResource("app", ofType: "js")        var jsContent:NSString = NSString (contentsOfFile: jsPath!, encoding: 0, error: nil)!        jsContent=jsContent.stringByReplacingOccurrencesOfString("\n", withString: "")        webView.stringByEvaluatingJavaScriptFromString(jsContent as String)    }        func signin_go(){    NSLog("-我執行了signin_go-")    }
var script = document.createElement(‘script‘);script.type = ‘text/javascript‘;script.text = ‘function signin_go(){   location.href="ios:@signin_go";}‘;document.getElementsByTagName(‘head‘)[0].appendChild(script);

 

轉載請註明來源:http://www.cnblogs.com/wuxian/p/4470634.html 

一步一步學習Swift之(四)玩轉UIWebView

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.