- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
<分区>
我的应用因 NSUnknownKeyException
而崩溃。我不知道为什么会发生这种崩溃
我的崩溃报告是
Terminating app due to uncaught exception 'NSUnknownKeyException', reason:
'[<TransactionsViewController 0x8a6bbe0> setValue:forUndefinedKey:]: this class is not
key value coding-compliant for the key sidebarButton.'
*** First throw call stack:
(
0 CoreFoundation 0x017615e4 __exceptionPreprocess + 180
1 libobjc.A.dylib 0x014e48b6 objc_exception_throw + 44
2 CoreFoundation 0x017f16a1 -[NSException raise] + 17
3 Foundation 0x011a59ee -[NSObject(NSKeyValueCoding) setValue:forUndefinedKey:] + 282
4 Foundation 0x01111cfb _NSSetUsingKeyValueSetter + 88
5 Foundation 0x01111253 -[NSObject(NSKeyValueCoding) setValue:forKey:] + 267
6 Foundation 0x0117370a -[NSObject(NSKeyValueCoding) setValue:forKeyPath:] + 412
7 UIKit 0x004f4a15 -[UIRuntimeOutletConnection connect] + 106
8 libobjc.A.dylib 0x014f67d2 -[NSObject performSelector:] + 62
9 CoreFoundation 0x0175cb6a -[NSArray makeObjectsPerformSelector:] + 314
10 UIKit 0x004f356e -[UINib instantiateWithOwner:options:] + 1417
11 UIKit 0x00786a2f -[UIStoryboard instantiateViewControllerWithIdentifier:] + 220
12 UIKit 0x00787028 -[UIStoryboardSegueTemplate _perform:] + 88
13 UIKit 0x007870f9 -[UIStoryboardSegueTemplate perform:] + 115
14 libobjc.A.dylib 0x014f6874 -[NSObject performSelector:withObject:withObject:] + 77
15 UIKit 0x002540c2 -[UIApplication sendAction:to:from:forEvent:] + 108
16 UIKit 0x0025404e -[UIApplication sendAction:toTarget:fromSender:forEvent:] + 61
17 UIKit 0x0034c0c1 -[UIControl sendAction:to:forEvent:] + 66
18 UIKit 0x0034c484 -[UIControl _sendActionsForEvents:withEvent:] + 577
19 UIKit 0x0034b733 -[UIControl touchesEnded:withEvent:] + 641
20 UIKit 0x0029151d -[UIWindow _sendTouchesForEvent:] + 852
21 UIKit 0x00292184 -[UIWindow sendEvent:] + 1232
22 UIKit 0x00265e86 -[UIApplication sendEvent:] + 242
23 UIKit 0x0025018f _UIApplicationHandleEventQueue + 11421
24 CoreFoundation 0x016ea83f __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 15
25 CoreFoundation 0x016ea1cb __CFRunLoopDoSources0 + 235
26 CoreFoundation 0x0170729e __CFRunLoopRun + 910
27 CoreFoundation 0x01706ac3 CFRunLoopRunSpecific + 467
28 CoreFoundation 0x017068db CFRunLoopRunInMode + 123
29 GraphicsServices 0x037069e2 GSEventRunModal + 192
30 GraphicsServices 0x03706809 GSEventRun + 104
31 UIKit 0x00252d3b UIApplicationMain + 1225
32 FortabBar 0x000049ad main + 141
33 libdyld.dylib 0x01d9f70d start + 1
)
libc++abi.dylib: terminating with uncaught exception of type NSException
谁能帮我解决这个问题
这个问题已经有答案了: Xcode - How to fix 'NSUnknownKeyException', Reason: "… this class is not key value codin
我尝试为 ios 做一个非常简单的应用程序。在 View 之间切换。当它在日志中启动此错误时: Terminating app due to uncaught exception 'NSUnknown
一两天前开始学习 Swift。我遇到这个错误的次数比我想的要多——本质上,我意识到它与 IBOutlets 有关。删除 Storyboard 中的所有 socket 和按钮/对象,然后手动重新添加它们
这个问题已经有答案了: Xcode - How to fix 'NSUnknownKeyException', Reason: "… this class is not key value codin
我对 Objective C 和 iOS 编程很陌生,并且遇到了这个非常奇怪的错误。相关应用程序使用我使用 NSObject 制作的自定义类型的一组预设值来初始化 NSMutableArray。这是由
This question already has answers here: Xcode - How to fix 'NSUnknownKeyException', reason: … this c
我在这里查看了这个问题的答案,但它们似乎都没有解决我遇到的问题,而且大多数其他答案都不是快速的,但我尝试了我理解的答案。 所有类名称都匹配, socket 具有正确的名称,并且没有未定义的 socke
这个问题在这里已经有了答案: Xcode - How to fix 'NSUnknownKeyException', reason: … this class is not key value c
这个问题在这里已经有了答案: Xcode - How to fix 'NSUnknownKeyException', reason: … this class is not key value c
app due to uncaught exception 'NSUnknownKeyException', reason: '[ setValue:forUndefinedKey:]: this c
我在框架中有一个带有相应 xib 的自定义 View 。在界面生成器中,我将文件所有者和 View 本身设置为我的 UIView (TotalTokenCountView) 子类。我还在自定义 Vie
这个问题在这里已经有了答案: this class is not key value coding-compliant for the key view [duplicate] (7 个答案) 关
我的程序显示了这个问题。谁能告诉我哪里出了问题? "2016-08-26 17:21:00.548 SegundaTentativa[2347:203583] *** Terminating app
我最近为我的应用实现了一个新 View ,它有一个 UICollectionView 作为要加载的图像的网格: class MemoriesView: UIViewController, UIColl
因此,我正在学习一个教程,并确保我完全按照作者的要求进行操作,并且我的代码抛出了以下错误。 2014-10-01 22:26:14.545 stopwatch2[3503:861733] *** Te
这个问题在这里已经有了答案: Xcode - How to fix 'NSUnknownKeyException', reason: … this class is not key value co
这个问题已经有答案了: Xcode - How to fix 'NSUnknownKeyException', Reason: "… this class is not key value codin
这个问题已经有答案了: Xcode - How to fix 'NSUnknownKeyException', Reason: "… this class is not key value codin
这个问题已经有答案了: Class is not key value coding-compliant [duplicate] (8 个回答) 已关闭 8 年前。 我不断收到此类错误,并且应用程序崩溃
我对 swift 很陌生,我正在 iTunes U 上学习斯坦福大学类(class)。我一直遵循得很好,但我遇到了一个我无法理解的错误: 2015-06-29 18:45:35.080 calcula
我是一名优秀的程序员,十分优秀!