watchOS 1 アプリを watchOS 2 にアップグレードしていますがExtensionDelegate
、新しい watchOS 2 ターゲットにクラスがあることに気付きました。このファイルを watchOS 1 アプリに (展開バージョンを更新した後に) 追加しようとしましたが、 のブレークポイントに達していませんapplicationDidFinishLaunching
。
私のクラスは次のようになります。
import WatchKit
class ExtensionDelegate: NSObject, WKExtensionDelegate {
func applicationDidFinishLaunching() {
// Perform any final initialization of your application.
print("applicationDidFinishLaunching for watchOS")
}
func applicationDidBecomeActive() {
// Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.
}
func applicationWillResignActive() {
// Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state.
// Use this method to pause ongoing tasks, disable timers, etc.
}
}
ファイルを追加するだけでは不十分ですか、それとも適切にアップグレードしなかったのですか?