CPApplicationDelegate.DidDecodeRestorableState(UIApplication, NSCoder) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
指出應用程式應該還原最高層級的狀態。
[Foundation.Export("application:didDecodeRestorableStateWithCoder:")]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.iOS, 6, 0, ObjCRuntime.PlatformArchitecture.All, null)]
public virtual void DidDecodeRestorableState (UIKit.UIApplication application, Foundation.NSCoder coder);
abstract member DidDecodeRestorableState : UIKit.UIApplication * Foundation.NSCoder -> unit
override this.DidDecodeRestorableState : UIKit.UIApplication * Foundation.NSCoder -> unit
參數
- application
- UIApplication
叫用這個委派方法的 UIApplication 參考。
- coder
- NSCoder
- 屬性
備註
這是在狀態還原期間呼叫的最終方法。 應用程式開發人員可以覆寫這個方法,以還原其最高層級的應用程式資料。
適用於
另請參閱
- <xref:UIKit.UIApplicationDelegate.WillEncodeRestorableState>