mono touch中WebView与html之间的交互

和朋友一起构思了一个想法,借用他的思路捣鼓了一会,效果还行。

先上一段代码看看:

RectangleF newrec = UIScreen.MainScreen.Bounds;
UIWebView webView = new UIWebView(newrec);
NSUrl nsurl = new NSUrl("http://www.baidu.com");
webView.LoadRequest(new NSUrlRequest(nsurl));
webView.ShouldStartLoad = delegate(UIWebView v, NSUrlRequest r, UIWebViewNavigationType t) {
    if (t == UIWebViewNavigationType.LinkClicked) {
        Console.WriteLine(r.Url.ToString());
        this.NavigationController.PushViewController(new MainScreen(), true);

        return false;
    }
    return true;
};

this.View.Add(webView);

mono touch中WebView与html之间的交互

mono touch中WebView与html之间的交互


我想不用多说,后面这么搞你们懂的。

另外,UIWebView有一个EvaluateJavascript方法,它可以执行js串,而js可以做些什么呢,不用我多说,各位可以尽情发挥了。
ps,这样app都可以用pc端的页面来处理,mono就相当于一个架子了。

mono touch中WebView与html之间的交互,布布扣,bubuko.com

mono touch中WebView与html之间的交互

上一篇:【译】ASP.NET MVC 5 教程 - 2:添加控制器


下一篇:市委组织部项目--js调用后台方法(一)