我的Apple Watch應用程序中有兩個WKInterfaceController
的子類。 第一個是另一個的入口,它們與Interface Builder的關係是nextPage
。 對於每個InterfaceController中的awakeWithContext
,willActivate
和didDeactivate
方法,我在觀看應用程序啓動時全部打印出來。Watch App的生命週期是什麼?
而且我得到了這樣的輸出:
awakeWithcontext -> First
awakeWithContext -> Second
willActivate -> First
willActivate -> Second
didDeactivate -> Second
,我刷到下一個InterfaceController:
willActivate -> Second
didDeactivate -> First
所以,現在的問題是:
都將所有InterfaceControllers的awakeWithContext
方法Watch應用程序只要啓動就會被解僱?
那麼willActivate
方法呢?