gpt4 book ai didi

ios - 从 xib 文件启动 APP 时出错

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

我使用 Storyboards 来启动应用程序,但最终我不得不删除它们。因此,我在 Xcode 中更改了 Controller 的主界面选项。现在,当我启动应用程序时,我收到下一个错误:

Terminating app due to uncaught exception 'NSUnknownKeyException', reason: '[<UIApplication 0x711d750> setValue:forUndefinedKey:]: this class is not key value coding-compliant for the key view.

在我的 AppDelegate 中,我有下一个函数

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{

return YES;
}

最佳答案

出现此类问题的原因是您的 Outlet 可能未正确连接或被错误删除,因此请确保您正确连接您的 IBOutlet,例如您的 XIB/ Storyboard中可能有一个 socket 链接,该链接指向代码中不再存在的 IBOutlet

其次,确保您在 didFinishLaunchingWithOptions 方法中的 UIWindow 上添加根 Controller ,如下所示

self.window.rootViewController = yourRootViewContoller;
[self.window makeKeyAndVisible];

关于ios - 从 xib 文件启动 APP 时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14991003/

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