如何在ViewController中的情节提要中打开视图

时间:2018-07-17 07:36:29

标签: ios swift xcode

我在Main.storyboard内创建了一个Web视图。

enter image description here

现在,我想以编程方式将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.
    }


}

1 个答案:

答案 0 :(得分:0)

您要从情节提要中获取WKWebView的实例作为快速实例。 取IBOutlet中的WKWebView。打开Main.storyboard,设置ViewController的自定义类。然后打开助手编辑器。然后将IBOutlet中的WKWebView放入迅捷中。