目錄:[Swift]Xcode實際操做html
本文將演示使用網頁視圖,加載並渲染網頁代碼。web
在項目導航區,打開視圖控制器的代碼文件【ViewController.swift】swift
1 import UIKit 2 import WebKit 3 4 class ViewController: UIViewController { 5 6 override func viewDidLoad() { 7 super.viewDidLoad() 8 // Do any additional setup after loading the view, typically from a nib. 9 //建立一個位置在(0,80),尺寸爲(320,460)的顯示區域 10 let rect = CGRect(x: 0, y: 80, width: 320, height: 460) 11 //初始化網頁視圖對象,並設置其位置和尺寸 12 let webView = WKWebView(frame: rect) 13 14 //建立一個基於網頁標籤的字符串 15 let html = "<font color='blue'>Hello</font>, <B>Xcode</B> and <i>Swift</i>" 16 //使用網頁視圖對象,加載這個字符串 17 webView.loadHTMLString(html, baseURL: nil) 18 //將網頁視圖對象,添加到當前視圖控制器的根視圖 19 self.view.addSubview(webView) 20 } 21 22 override func didReceiveMemoryWarning() { 23 super.didReceiveMemoryWarning() 24 // Dispose of any resources that can be recreated. 25 } 26 }