我在Main.storyboard
内创建了一个Web视图。
现在,我想以编程方式将URL添加到此视图,并修改其宽度/高度等,但是如何打开此webView源代码?当我转到ViewController.swift
时,所得到的就是默认值
import UIKit
class ViewController: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
}
答案 0 :(得分:0)
您要从情节提要中获取WKWebView
的实例作为快速实例。
取IBOutlet
中的WKWebView
。打开Main.storyboard
,设置ViewController的自定义类。然后打开助手编辑器。然后将IBOutlet
中的WKWebView
放入迅捷中。