一两天前开始学习Swift。我遇到这个错误的次数比我想要的多 - 基本上,我意识到它与IBOutlets有关。删除故事板中的所有插座和按钮/对象,并手动重新添加它们似乎可以解决问题。
将来如果发生这个错误,并且我正在开展一个大型项目,我想知道如何诊断它是哪个IBOutlet,或者是什么造成这个错误。
我有一个关于GitHub here项目的副本,如果有人想看看并留下一些建议。
提前感谢!
2015-06-04 22:24:31.607 Controlling The Keyboard[1343:16382] *** Terminating app due to uncaught exception 'NSUnknownKeyException', reason: '[<Controlling_The_Keyboard.ViewController 0x7f80896418b0> setValue:forUndefinedKey:]: this class is not key value coding-compliant for the key enterButton.'
*** First throw call stack:
(
0 CoreFoundation 0x0000000104855c65 __exceptionPreprocess + 165
1 libobjc.A.dylib 0x00000001063c0bb7 objc_exception_throw + 45
2 CoreFoundation 0x00000001048558a9 -[NSException raise] + 9
3 Foundation 0x0000000104c73b53 -[NSObject(NSKeyValueCoding) setValue:forKey:] + 259
4 CoreFoundation 0x000000010479dd50 -[NSArray makeObjectsPerformSelector:] + 224
5 UIKit 0x00000001053cc52b -[UINib instantiateWithOwner:options:] + 1506
6 UIKit 0x0000000105224718 -[UIViewController _loadViewFromNibNamed:bundle:] + 242
7 UIKit 0x0000000105224d08 -[UIViewController loadView] + 109
8 UIKit 0x0000000105224f79 -[UIViewController loadViewIfRequired] + 75
9 UIKit 0x000000010522540e -[UIViewController view] + 27
10 UIKit 0x00000001051402c9 -[UIWindow addRootViewControllerViewIfPossible] + 58
11 UIKit 0x000000010514068f -[UIWindow _setHidden:forced:] + 247
12 UIKit 0x000000010514ce21 -[UIWindow makeKeyAndVisible] + 42
13 UIKit 0x00000001050f0457 -[UIApplication _callInitializationDelegatesForMainScene:transitionContext:] + 2732
14 UIKit 0x00000001050f31de -[UIApplication _runWithMainScene:transitionContext:completion:] + 1349
15 UIKit 0x00000001050f20d5 -[UIApplication workspaceDidEndTransaction:] + 179
16 FrontBoardServices 0x0000000107ed05e5 __31-[FBSSerialQueue performAsync:]_block_invoke_2 + 21
17 CoreFoundation 0x000000010478941c __CFRUNLOOP_IS_CALLING_OUT_TO_A_BLOCK__ + 12
18 CoreFoundation 0x000000010477f165 __CFRunLoopDoBlocks + 341
19 CoreFoundation 0x000000010477ef25 __CFRunLoopRun + 2389
20 CoreFoundation 0x000000010477e366 CFRunLoopRunSpecific + 470
21 UIKit 0x00000001050f1b42 -[UIApplication _run] + 413
22 UIKit 0x00000001050f4900 UIApplicationMain + 1282
23 Controlling The Keyboard 0x0000000104654f37 main + 135
24 libdyld.dylib 0x0000000106b18145 start + 1
)
libc++abi.dylib: terminating with uncaught exception of type NSException
(lldb)
答案 0 :(得分:10)
在ViewController
中添加以下内容可以解决您的问题。
@IBOutlet weak var enterButton: UIButton!
由于ViewController
与故事板文件中的三个IBOutlet
相关联,因此发生错误。
您在ViewController.swift
文件中只编写了两个IBOutlet作为IBOutlet
&#39}。您错过了撰写enterButton
IBOutlet
。那就是它。
答案 1 :(得分:2)
我曾经遇到过这样的问题。我认为最好的方法是阅读错误日志并弄清楚发生了什么。
您的错误消息是
this class is not key value coding-compliant for the key enterButton
所以我知道它与一些名为enterButton
的IBOutlet有关。然后你就可以知道什么是enterButton以及你对它做了什么。
我学到的是,如果您通过控制拖动创建了IBOutlet,并且稍后您更改了名称,有时您将破坏xib文件或故事板中的映射。
如果在xib文件中搜索enterButton
,您可以看到xml文件已定义了一些键,以便正确初始化正确的UIView元素。如果您更改了名称,则映射已损坏,因此某些内容会向南移动。
这是经验,当您越来越熟悉iOS时,您将知道如何调试它。但我认为,您现在可以做的是了解如何从nib初始化视图和控制器,以及如何使用LLDB来调试代码。这总是有帮助的。
https://docs.angularjs.org/api/ng/directive/ngCsp与您的问题非常相似。看看吧。
答案 2 :(得分:0)
***由于未捕获的异常终止应用程序&#39; NSUnknownKeyException&#39;,原因:&#39; [setValue:forUndefinedKey:]:此类不是键入enterButton的键值编码兼容。&# 39;
这就是为您提供答案的线索&#34; setValue:forUndefinedKey:]:此类不是密钥值编码兼容的密钥enterButton&#34;
从以上两点可以知道:
对象原因问题:Controlling_The_Keyboard。 ViewController 0x7f80896418b0&gt;
哪个IBOutlet会导致问题:此类不是键值 enterButton 的键值编码兼容。&#39;
答案 3 :(得分:0)
我花了一段时间才发现这个:我在故事板Identity Inspector中为顶级视图控制器设置了自定义类名称错误。它与代码中的View Controller类的名称不匹配。虽然一切似乎都工作,并且可以使用干净的构建看起来没有错误的插座和连接,应用程序将立即死于着名的NSUnknownKeyException。当这个问题得到解决时,一切正常。 (Xcode 9,Swift 4)。