我刚刚更新了 Xcode 的新测试版以继续我的 WatchKit 应用程序的工作
更新所有 WatchKit 扩展文件后,我立即收到错误消息
“初始化程序不会覆盖其超类中的指定初始化程序”
在更新之前我没有收到此错误,不知道如何修复它。
有什么见解吗?
这是我的代码
class InterfaceController: WKInterfaceController {
override init(context: AnyObject?) {
// Initialize variables here.
super.init(context: context)
// Configure interface objects here.
NSLog("%@ init", self)
}
override func willActivate() {
// This method is called when watch view controller is about to be visible to user
super.willActivate()
NSLog("%@ will activate", self)
}
override func didDeactivate() {
// This method is called when watch view controller is no longer visible
NSLog("%@ did deactivate", self)
super.didDeactivate()
}
}