使用未解析的标识符

时间:2017-10-01 03:40:07

标签: swift xcode9

我是swift和编码的新手,正在努力从youtube上的教程制作一个简单的网络浏览器应用程序,我遇到了一些错误。我可以做出任何改变吗?

import UIKit

class ViewController: UIViewController {
    @IBAction func settings(_ sender: Any) {
    }
    @IBOutlet weak var mysettings: UIButton!
    @IBOutlet weak var myWebviewer: UIWebView!
}

    override func viewDidLoad() {
        super.viewDidLoad()
        // Do any additional setup after loading the view, typically from a nib.


    mywebviewer.loadrequest(URLRequest(url: URL(String:"https://www.google.com")!))
    }


 override func didReceiveMemoryWarning() {
        super.didReceiveMemoryWarning()
        // Dispose of any resources that can be recreated.
    }

Screenshot

2 个答案:

答案 0 :(得分:0)

尝试从第16行移动右括号}到第31行。

目前,您的ViewController类的范围从第11行到第16行,而它应包含屏幕截图中显示的所有方法

答案 1 :(得分:0)

Frist删除位于IBOutlet之后的Curley括号并添加到视图控制器类的最后一行,因为这是一个主类括号