gpt4 book ai didi

swift - 类型为 'representedObject' 的属性 'AnyObject?' 无法覆盖类型为 'Any?' 的属性

转载 作者:行者123 更新时间:2023-11-28 12:38:22 26 4
gpt4 key购买 nike

我在尝试将以下代码升级到 Swift 3 时遇到了问题。

我该如何解决这个问题?

   @IBAction func Quit(_ sender: AnyObject) {
NSApplication.shared().terminate(self)
}

override func viewDidLoad() {
super.viewDidLoad()

// Do any additional setup after loading the view.

//INSERT DATE & TIME
labeldate.stringValue = DateFormatter.localizedString(from: Date(), dateStyle: DateFormatter.Style.full, timeStyle: DateFormatter.Style.none)

}

override var representedObject: AnyObject? {
didSet {
// Update the view, if already loaded.
}

它说:

Property 'representedObject' with type 'AnyObject?' cannot override a property with type 'Any?'

我可以用什么代替?

最佳答案

您需要在代码中更改以下内容

 override var representedObject: Any? {
didSet {
// Update the view, if already loaded.
}
}

关于swift - 类型为 'representedObject' 的属性 'AnyObject?' 无法覆盖类型为 'Any?' 的属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40231460/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com