类’ViewController’在swift中没有初始化

前端之家收集整理的这篇文章主要介绍了类’ViewController’在swift中没有初始化前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
当我这样做时,从编译器获取投诉
class ViewController: UIViewController {

    var delegate : AppDelegate
    override func viewDidLoad() {
        super.viewDidLoad()
        // Do any additional setup after loading the view,typically from a nib.
        //self.appDelegate = UIApplication.sharedApplication().delegate;

    }

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

    @IBAction func getData(sender : AnyObject) {

    }

    @IBAction func logout(sender : AnyObject) {
    }
}

但是,如果我只是添加?在AppDelegate的结尾,如下所示,错误消失了。

class ViewController: UIViewController {

    var delegate : AppDelegate?
    override func viewDidLoad() {
        super.viewDidLoad()
        // Do any additional setup after loading the view,typically from a nib.
        //self.appDelegate = UIApplication.sharedApplication().delegate;

    }

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

    @IBAction func getData(sender : AnyObject) {

    }

    @IBAction func logout(sender : AnyObject) {
    }
}

我没有看到可选关键字与此错误相关,除非我错了。
有什么想法。随意评论。欣赏它。

谢谢

错误可以改进,但是你的第一个版本的问题是你有一个成员变量,委托,没有默认值。 Swift中的所有变量必须始终具有值。这意味着你必须在一个初始化器中设置它,你没有,或者你可以提供一个默认值在线。

当你使它可选时,默认情况下允许它为nil,取消需要显式给它一个值或初始化它。

原文链接:https://www.f2er.com/swift/321536.html

猜你在找的Swift相关文章