gpt4 book ai didi

ios - 从 AppDelegate 移动到 View Controller 后 Swift App 崩溃

转载 作者:行者123 更新时间:2023-11-28 08:05:28 27 4
gpt4 key购买 nike

我正在使用我从堆栈溢出的某个地方找到的这段代码从应用程序委托(delegate)移动到一个新的 View Controller

    func changeRootViewController(with identifier:String!) {
let storyboard = self.window?.rootViewController?.storyboard
let desiredViewController = storyboard?.instantiateViewController(withIdentifier: identifier);

let snapshot:UIView = (self.window?.snapshotView(afterScreenUpdates: true))!
desiredViewController?.view.addSubview(snapshot);

self.window?.rootViewController = desiredViewController;

UIView.animate(withDuration: 0.3, animations: {() in
snapshot.layer.opacity = 0;
snapshot.layer.transform = CATransform3DMakeScale(1.5, 1.5, 1.5);
}, completion: {
(value: Bool) in
snapshot.removeFromSuperview();
});
}

它工作正常,我可以移动到带有动画的新 View Controller (WHICH IS REQUIRED)。但是,一旦我转到其他某个应用并返回,该应用就会因错误而崩溃。

Cannot snapshot view (; layer = >) with afterScreenUpdates:NO, because the view is not in a window. Use afterScreenUpdates:YES. fatal error: unexpectedly found nil while unwrapping an Optional value

我从 AppDelegate 打开 View Controller 的其他代码

func showViewController(id: String){
let mainStoryboard : UIStoryboard = UIStoryboard(name: "Main", bundle: nil)
let initialViewControlleripad : UIViewController = mainStoryboard.instantiateViewController(withIdentifier: id) as UIViewController
self.window = UIWindow(frame: UIScreen.main.bounds)
self.window?.rootViewController = initialViewControlleripad
self.window?.makeKeyAndVisible()
}

它工作得很好,但是当尝试添加动画时,动画不起作用。请帮助解决这些问题。

最佳答案

你试过像这样的动画吗?

UIView.transition(with: appDel.window!,
duration: 0.25,
options: .transitionCrossDissolve,
animations: { appDel.window?.rootViewController = vc } ,
completion: nil)

关于ios - 从 AppDelegate 移动到 View Controller 后 Swift App 崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45293749/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com