gpt4 book ai didi

swift - super.init' 不能在 swift 的初始化程序之外调用

转载 作者:行者123 更新时间:2023-11-30 10:18:29 25 4
gpt4 key购买 nike

code:
override func awakeWithContext(context: AnyObject?) {
super.init(context: context)
let date: NSDate? = DataAccess.sharedInstance.getLatestDate()
if date != nil {
dateLabel.setText(date!.description)
}
}

我正在使用xcode6.3 beta。当我运行项目时,它给出错误“super.init'无法在初始化程序之外调用”,为什么我收到此错误。任何帮助将不胜感激。提前致谢

最佳答案

您指定的 init 不再存在。您必须使用 super.awakeWithContext(context) 来代替:

所以替换:

super.init(context: context)

与:

super.awakeWithContext(context)

关于swift - super.init' 不能在 swift 的初始化程序之外调用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28760389/

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