- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我对 KVO 比较陌生,所以我很可能违反了一些基本规则。我正在使用核心数据。
我的应用程序崩溃并显示以下消息:我无法理解为什么 CGImage 参与观察在MeasurementPointer 对象上设置的值。
*** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: '<CGImage 0x276fc0>: An -observeValueForKeyPath:ofObject:change:context: message was received but not handled.
Key path: measurementDescriptor
Observed object: <MeasurementPointer: 0x8201640> (entity: MeasurementPointer; id: 0x8200410 <x-coredata://EBEE0687-D67D-4B03-8C95-F4C60CFDC20F/MeasurementPointer/p75> ; data: {
measurementDescriptor = "0x260fd0 <x-coredata://EBEE0687-D67D-4B03-8C95-F4C60CFDC20F/MeasurementDescriptor/p22>";
})
Change: {
kind = 1;
new = "<MeasurementDescriptor: 0x262530> (entity: MeasurementDescriptor; id: 0x260fd0 <x-coredata://EBEE0687-D67D-4B03-8C95-F4C60CFDC20F/MeasurementDescriptor/p22> ; data: {\n measurementName = Temperature;\n measurementUnits = \"\\U00b0C\";\n sortString = nil;\n})";
}
Context: 0x0'
*** Call stack at first throw:
(
0 CoreFoundation 0x30897ed3 __exceptionPreprocess + 114
1 libobjc.A.dylib 0x3002f811 objc_exception_throw + 24
2 CoreFoundation 0x30897d15 +[NSException raise:format:arguments:] + 68
3 CoreFoundation 0x30897d4f +[NSException raise:format:] + 34
4 Foundation 0x34a13779 -[NSObject(NSKeyValueObserving) observeValueForKeyPath:ofObject:change:context:] + 60
5 Foundation 0x349b6acd NSKeyValueNotifyObserver + 216
6 Foundation 0x349b6775 NSKeyValueDidChange + 236
7 Foundation 0x349ae489 -[NSObject(NSKeyValueObserverNotification) didChangeValueForKey:] + 76
8 CoreData 0x3165b577 _PF_ManagedObject_DidChangeValueForKeyIndex + 102
9 CoreData 0x3165ac51 _sharedIMPL_setvfk_core + 184
10 CoreData 0x3165dc83 _svfk_0 + 10
11 SPARKvue 0x000479f1 -[MeasurementViewController doneAction:] + 152
12 CoreFoundation 0x3083f719 -[NSObject(NSObject) performSelector:withObject:withObject:] + 24
13 UIKit 0x31eb1141 -[UIApplication sendAction:to:from:forEvent:] + 84
14 UIKit 0x31f08315 -[UIBarButtonItem(UIInternal) _sendAction:withEvent:] + 92
15 CoreFoundation 0x3083f719 -[NSObject(NSObject) performSelector:withObject:withObject:] + 24
16 UIKit 0x31eb1141 -[UIApplication sendAction:to:from:forEvent:] + 84
17 UIKit 0x31eb10e1 -[UIApplication sendAction:toTarget:fromSender:forEvent:] + 32
18 UIKit 0x31eb10b3 -[UIControl sendAction:to:forEvent:] + 38
19 UIKit 0x31eb0e05 -[UIControl(Internal) _sendActionsForEvents:withEvent:] + 356
20 UIKit 0x31eb1453 -[UIControl touchesEnded:withEvent:] + 342
21 UIKit 0x31eafddd -[UIWindow _sendTouchesForEvent:] + 368
22 UIKit 0x31eaf757 -[UIWindow sendEvent:] + 262
23 UIKit 0x31eaa9ff -[UIApplication sendEvent:] + 298
24 UIKit 0x31eaa337 _UIApplicationHandleEvent + 5110
25 GraphicsServices 0x31e4504b PurpleEventCallback + 666
26 CoreFoundation 0x3082cce3 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE1_PERFORM_FUNCTION__ + 26
27 CoreFoundation 0x3082cca7 __CFRunLoopDoSource1 + 166
28 CoreFoundation 0x3081f56d __CFRunLoopRun + 520
29 CoreFoundation 0x3081f277 CFRunLoopRunSpecific + 230
30 CoreFoundation 0x3081f17f CFRunLoopRunInMode + 58
31 GraphicsServices 0x31e445f3 GSEventRunModal + 114
32 GraphicsServices 0x31e4469f GSEventRun + 62
33 UIKit 0x31e51123 -[UIApplication _run] + 402
34 UIKit 0x31e4f12f UIApplicationMain + 670
35 SPARKvue 0x000031ff main + 70
36 SPARKvue 0x000031b4 start + 40
)
terminate called after throwing an instance of 'NSException'
Program received signal: “SIGABRT”.
触发此事件的所有事件是:
[[self measurementPointer] setMeasurementDescriptor:descriptor];
鉴于此,
[[meterDisplay measurementPointer] addObserver:self
forKeyPath:@"measurementDescriptor"
options:NSKeyValueObservingOptionNew
context:nil];
基本上,MeasurementPointer 对象指向MeasurementDescriptor 对象 - 并且两者都是 NSManagedObject 子类。 MeasurementDescriptor 对象描述特定的“测量”和“单位”组合(例如“温度 (°C)”或“风速 (mph)”)。测量描述符类似于单例,每个唯一的测量单位组合只有一个。
MeasurementPointers 由其他对象引用 - 模型对象和 Controller 对象。 MeasurementPointer 引用MeasurementDescriptor。许多对象有兴趣了解MeasurementPointer 何时开始引用新的/不同的MeasurementDescriptor。例如,此类更改可能会导致图形显示的轴发生变化。或者,在上面的代码中,可能会导致仪表显示屏显示不同的样本(来自选定的一组样本)。
我认为根本问题是 CGImage 正在接收一条不适合它的消息...不幸的是,这是间歇性的,所以我无法找到触发它的模式。
最佳答案
你有一个对象被释放并且没有停止观察另一个对象。浏览所有 -addObserver...
调用,并确保它们至少在 -dealloc
中与 -removeObserver...
调用相匹配> 也可能在 -viewDidUnload
中,具体取决于您的应用程序结构。
关于iphone - 一个-observeValueForKeyPath :ofObject:change:context: message was received but not handled,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4120539/
我有一个对象,它实现了名为 contents 的键的索引访问器方法。在这些访问器中,当我修改底层数组时,我会调用 willChange:valuesAtIndexes:forKey: 和 didCha
一段时间以来,我一直在努力理解 ofFloat、ofInt、 和 ofObject 之间的区别。我的一部分挣扎是我不知道什么时候使用每一个。我尝试将 ofInt 用于 translationY 属性,
我想知道这个方法的参数会返回什么。 - (void) observeValueForKeyPath:(NSString *)keyPath ofObjec
在我的 UIScrollView 子类中,我正在观察框架变化: [self addObserver:self forKeyPath:@"frame" options:0 context:NULL];
我正在尝试将 Swift 2.2 项目转换为 Swift 3,但出现以下错误: Method 'observeValue(forKeyPath:ofObject:change:context:)' w
我对 KVO 比较陌生,所以我很可能违反了一些基本规则。我正在使用核心数据。 我的应用程序崩溃并显示以下消息:我无法理解为什么 CGImage 参与观察在MeasurementPointer 对象上设
我想根据内容动态设置 Collection View 的高度,我尝试了以下代码: override func viewWillAppear(_ animated: Bool) {
我通过调用以下方法来观察 AVPlayer 的 rate 属性的变化: addObserver:sharedPlayerManagerInstance forKeyPath:@"rate"
因此,我将此文本字段 someField 绑定(bind)到 InterfaceBuilder (IB) 中的属性 someText。在我的代码中的任何位置,当我更改 someText 时,someF
我有一个 NSOperation 子类,它实现 setFinished: 来生成 KVO 通知: -(void)setFinished:(BOOL)isFinished { LogError(
我是一名优秀的程序员,十分优秀!