简体   繁体   English

调用[self setValue:forKey:]时应用崩溃

[英]app crashes when [self setValue:forKey:] is called

.h File .h文件

...
@property(nonatomic,readwrite)NSNumber *isConnectionWithServerEstablished;

when ever i setValue for isConnectionWithServerEstablished the app crashes 每当我为isConnectionWithServerIncluded设置setValue时,应用程序崩溃

CRASH POINT: 崩溃点:

[self setValue:Number forKey:@"isConnectionWithServerEstablished"];

OUTPUT LOG 输出记录

2012-07-24 16:08:26.517 Protocol[1337:11103] *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: '<__NSMallocBlock__: 0x6b84a70>: An -observeValueForKeyPath:ofObject:change:context: message was received but not handled.
Key path: isConnectionWithServerEstablished
Observed object: <LobbyProtocolModel: 0x6b850b0>
Change: {
   kind = 1;
new = 1;
}
Context: 0x0'

*** First throw call stack:
(0x155e022 0x1b16cd6 0x1506a48 0x15069b9 0xe540ef 0xdc0d91 0xdc0895 0xda633e 0xdc8a82 0xdbcf30 0xdbcedb 0xb606 0xdc0d91 0xdc0895 0xda633e 0xdc16ab 0xe00f19 0xdbcfbf 0xdbcedb 0x5716 0x4d1e 0xe5fa29 0x1529855 0x1529778 0xda419a 0xd5e4 0x24661 0x216d330 0x216ef0c 0x216ecb4 0x216e402 0x9722cb24 0x9722e6fe)
terminate called throwing an exception(lldb) 

Something is observing your object, but that object isn't implementing -observeValueForKeyPath:ofObject:change:context: . 正在观察您的对象,但是该对象未实现-observeValueForKeyPath:ofObject:change:context: Your observer needs to implement that method if you're doing manual observing. 如果您要进行手动观察,则观察者需要实现该方法。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM