zoukankan      html  css  js  c++  java
  • swift UIWebView

    //

    //  WebViewController.swift

    //  UIControlDemo

    //

    //  Created by on 14/12/3.

    //  Copyright (c) 2014 马大哈. All rights reserved.

    //

     

    import UIKit

     

    class WebViewController: BaseViewController ,UIWebViewDelegate{

        var web:UIWebView?

        override func viewDidLoad() {

            super.viewDidLoad()

            

            self.title = "WebView"

     

            web = UIWebView(frame: CGRectMake(0, 0, self.view.frame.size.width,self.view.frame.size.height))

            web?.backgroundColor = .whiteColor()

            web?.delegate = self

            web?.scalesPageToFit = true

            self.view.addSubview(web!)

            

            let stringUrl = "http://www.baidu.com"

            let url = NSURL(string: stringUrl)

            let urlRequest = NSURLRequest(URL: url!)

            web?.loadRequest(urlRequest)

     

        }

        

        func webView(webView: UIWebView, didFailLoadWithError error: NSError) {

            

            println("didFailLoadWithError")

            

        }

        

        func webView(webView: UIWebView, shouldStartLoadWithRequest request: NSURLRequest, navigationType: UIWebViewNavigationType) -> Bool {

            

            println("(request)")

            

            return true

        }

        

        func webViewDidFinishLoad(webView: UIWebView) {

            println("webViewDidFinishLoad")

            

        }

        

        func webViewDidStartLoad(webView: UIWebView) {

            

            println("webViewDidStartLoad")

        }

        

        override func didReceiveMemoryWarning() {

            super.didReceiveMemoryWarning()

     

        }

     

    }

     

  • 相关阅读:
    VS2010下配置CxImage
    Visual Studio 2010 开发配置
    主机屋使用感受
    Web开发者必备的20款超赞jQuery插件
    自动页面居中
    jQuery+CSS打造的网页背景颜色切换效果
    小按钮,大学问
    【网站开发必备】——12款响应式 Lightbox(灯箱)效果插件
    修正 IE 的双倍页边距 bug
    a>b?a:b
  • 原文地址:https://www.cnblogs.com/madaha/p/4145956.html
Copyright © 2011-2022 走看看