这是基于JavaScript的UWP应用程序。应用程序正在侦听MSDN示例中描述的检查点/恢复事件。在检查点我正在保存应用程序的状态,如历史记录。 如何防止应用程序崩溃?电话被锁定时会发生什么事件的确切顺序。
检查站上的:
public func navigationController(navigationController: UINavigationController, willShowViewController viewController: UIViewController, animated: Bool) {
if (viewController.isMemberOfClass:(YourUIViewControllesSubclass1.self)){
//or another detection
navigationController.navigatonBarHidden = true//or false if needed
} else if (viewController.isMemberOfClass:(YourUIViewControllesSubclass2.self)){
navigationController.navigatonBarHidden = true//or false if needed
}/ ... may check others
使用Lifecycle状态从Visual Studio进行调试效果很好。
答案 0 :(得分:0)
希望为我自己的问题添加答案。 由于流中包含的谷歌广告对象格式不正确导致应用程序崩溃,应用程序崩溃。例如在检查点期间没有正确处理广告数组。