目錄:[Swift]Xcode實際操做html
本文將演示網頁視圖的使用。web
在項目導航區,打開視圖控制器的代碼文件【ViewController.swift】swift
1 import UIKit 2 3 class ViewController: UIViewController { 4 5 override func viewDidLoad() { 6 super.viewDidLoad() 7 // Do any additional setup after loading the view, typically from a nib. 8 //建立一個位置在(0,20),尺寸爲(320,568)的顯示區域 9 let rect = CGRect(x: 0, y: 20, width: 320, height: 568) 10 //初始化網頁視圖對象,並設置其位置和尺寸 11 let webView = UIWebView(frame: rect) 12 13 //建立一個網絡地址對象,做爲網頁視圖對象的網址 14 let url = URL(string: "https://www.apple.com") 15 //建立一個網址請求對象,做爲網頁視圖對象的網絡請求 16 let request = URLRequest(url: url!) 17 18 //使用網頁視圖對象,加載設置的網址 19 webView.load(request) 20 //將網頁視圖對象,添加到當前視圖控制器的根視圖 21 self.view.addSubview(webView) 22 } 23 24 override func didReceiveMemoryWarning() { 25 super.didReceiveMemoryWarning() 26 // Dispose of any resources that can be recreated. 27 } 28 }