gpt4 book ai didi

uiviewcontroller - Storyboard 实例化 WithIdentifier 导致 iOS 13 崩溃

转载 作者:行者123 更新时间:2023-12-04 15:29:07 25 4
gpt4 key购买 nike

中测试我的应用程序Xcode 11(测试版) iOS-13(测试版)更新,当我尝试从 Storyboard实例化 viewController 时,我崩溃了。

在以前的版本中,使用以下代码可以正常工作:

XYZController *controller = [self.storyboard instantiateViewControllerWithIdentifier:@"IDENTIFIER"];

现在对于 iOS 13 Apple 引入了新方法,即
XYZController *controller = [self.storyboard instantiateViewControllerWithIdentifier:@"IDENTIFIER" creator:^__Kindof UIViewController *__Nullable(NSCoder *_Nonnull coder){
return [XYZController alloc] initWithCoder:coder];
}];

在 iOS-13 中执行这两种方法会导致崩溃。虽然崩溃显示在其他地方。

这是我的崩溃报告。

Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: '' returned nil from -traitCollection, which is not allowed.

最佳答案

注意:临时解决方案

我也遇到了这个问题,我发现了两个临时修复程序。首先是创建需要实例化的 Controller 的对象/属性和instantiateViewControllerWithIdentifier在您的 Controller 的 viewDidLoad 中.应用程序不会崩溃。

其次是在dispatch_async(dispatch_get_main_queue())中实例化 Controller .这两个技巧都对我有用。

关于uiviewcontroller - Storyboard 实例化 WithIdentifier 导致 iOS 13 崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57324928/

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