UIApplicationDelegate.ShouldSaveApplicationState 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
应用程序是否应保存应用程序状态信息。
[Foundation.Export("application:shouldSaveApplicationState:")]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.iOS, 6, 0, ObjCRuntime.PlatformArchitecture.All, null)]
public virtual bool ShouldSaveApplicationState (UIKit.UIApplication application, Foundation.NSCoder coder);
abstract member ShouldSaveApplicationState : UIKit.UIApplication * Foundation.NSCoder -> bool
override this.ShouldSaveApplicationState : UIKit.UIApplication * Foundation.NSCoder -> bool
参数
- application
- UIApplication
对调用此委托方法的 UIApplication 的引用。
- coder
- NSCoder
返回
- 属性
注解
此方法 和 ShouldRestoreApplicationState(UIApplication, NSCoder) 都必须返回 true
,才能进行状态保留和还原。 这些方法便于测试状态保留过程的各个方面。