Tagged Questions

Key-value Observing or KVO is a technology for observing changes in object properties.

learn more… | top users | synonyms (1)

62
votes
3answers
15k views

Objective-C: What's the Difference between objectForKey and valueForKey?

What is the difference between objectForKey and valueForKey? I looked both up in the documentation and they seemed the same to me.
56
votes
3answers
9k views

What's the best way to communicate between view controllers?

Being new to objective-c, cocoa, and iPhone dev in general, I have a strong desire to get the most out of the language and the frameworks. One of the resources I'm using is Stanford's CS193P class ...
18
votes
4answers
6k views

Observing an NSMutableArray for insertion/removal

A class has a property (and instance var) of type NSMutableArray with synthesized accessors (via @property). If you observe this array using: [myObj addObserver:self forKeyPath:@"theArray" options:0 ...
10
votes
3answers
5k views

When should I remove observers? Error about deallocating objects before removing observers

I am trying to use key-value observing in one of my classes. I register the observers in the init method and remove/deregister them in the dealloc, but I get the following error which seems to occur ...
10
votes
6answers
532 views

What's a good way to bind from a shared utility window and the frontmost document window?

I have an application which allows for multiple NSDocuments to be open. In this application is a single utility window that contains some functionality that I want to apply to the frontmost document. ...
7
votes
5answers
58 views

Why would you use an ivar?

I usually see this question asked the other way, such as iOS: must every iVar really be property? (and I like bbum's answer to this Q). I use properties almost exclusively in my code. Every so ...
6
votes
4answers
546 views

iOS: How do I know if a property is KVO-compliant?

In the Key-Value Observing Programming Guide, the section Registering for Key-Value Observing says "Typically properties in Apple-supplied frameworks are only KVO-compliant if they are documented as ...
6
votes
1answer
167 views

Observing dependent keys across a to-many relationship

I have a Core Data entity, "bid", which has a relationship to many "items", called "itemLink". in IB, I have a text field bound to "total", and that almost works. In "bid.m" I have: - ...
6
votes
1answer
368 views

NSFetchedResultsController - KVO, UITableView and a “Tree”

I'm using a NSFetchedResultsController to implement KVO for my UITableView (which is obvious). What I can't figure out is, how to use multiple Entities - sort of a tree structure - to be present(ed) ...
6
votes
1answer
2k views

An -observeValueForKeyPath:ofObject:change:context: message was received but not handled

I am relatively new to KVO, so there is a good chance that I am violating some fundamental rule. I am using Core Data. My app crashes with the following message: And what I can't understand is why a ...
6
votes
1answer
3k views

Parameters from observeValueForKeyPath:ofObject:change:context:

I was wondering what the parameters from this method would return. - (void) observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object ...
6
votes
4answers
2k views

How can i tell if an object has a key value observer attached

if you tell an objective c object to removeObservers: for a key path and that key path has not been registered, it cracks the sads. like - 'Cannot remove an observer for the key path "theKeyPath" ...
6
votes
4answers
2k views

How do I find all the property keys of a KVC compliant Objective-C object?

Is there a method that returns all the keys for an object conforming to the NSKeyValueCoding protocol? Something along the lines of [object getPropertyKeys] that would return an NSArray of NSString ...
6
votes
3answers
805 views

Is it possible to observe a readonly property of an object in Cocoa Touch?

I've attempted to observe the (readonly) visibileViewController property of a UINavigationController with no success. I was able to successfully observe a readwrite property I defined myself for ...
6
votes
1answer
2k views

Implementing a KVO/Bindings-Compliant Bridge-Pattern in Cocoa

I'm trying to implement a simple object bridge in cocoa where the bridge object acts as a kvo/bindings-compliant drop in for some arbitrary other NSObject instance. Here is my problem (more details ...
5
votes
1answer
157 views

What is the difference between NSNotificationCenter and the Key Value Observing technique?

I just read a couple of tutorials regarding KVO, but I have not yet discovered the reason of its existence. Isn't NSNotificationCenter an easier way to observe objects? I am new to Stackoverflow, so ...
5
votes
2answers
688 views

KVO and ARC how to removeObserver

How do you remove an observer from an object under ARC? Do we just add the observer and forget about removing it? If we no longer manage memory manually where do we resign from observing? For ...
5
votes
1answer
295 views

NSMutableDictionary addition and removal KVO

I have a quick question regarding KVO. I understand that for a NSArray if observing additions is desired you can do the following. NSIndexSet* set = [NSIndexSet indexSetWithIndex:[someIndex ...
5
votes
1answer
441 views

Should “to-many” relationships be modelled as properties?

After reading the Key-Value Coding Programming Guide, the Key-Value Observing Programming Guide and the Model Object Implementation Guide, as well as reading many StackOverflow entries on the topic ...
5
votes
3answers
4k views

Key-Value-Observing a to-many relationship in Cocoa

I am trying to get key-value-observing to work for an NSMutableArray. Below is the .h file for MyObservee, the observed class: @interface MyObservee : NSObject { @private int someValue; ...
5
votes
2answers
951 views

How do I keep an NSPathControl updated with the path of the selected cell in an NSBrowser

I need to keep an NSPathControl updated with the currently selected path in an NSBrowser, but I'm having trouble figuring out a way of getting notifications when the path has changed from the ...
4
votes
1answer
44 views

How to use KVO to detect when an application gets active?

I have the following code in a Cocoa application: - (void)applicationDidFinishLaunching:(NSNotification *)aNotification { NSArray* arrayAppList = [[NSWorkspace sharedWorkspace] ...
4
votes
1answer
199 views

Key-Value Observing an NSMutableSet

In a plain class I have a NSMutableSet property. Whenever objects are added to or removed from the set, I want to perform some custom code. I know I could write a few addObjectToSet:-like methods to ...
4
votes
1answer
186 views

How to programmatically monitor KVC object?

I'm trying to monitor a NSMutableArray for changes via code. I want to add an observer for whenever the array changes, but I don't see what the NotificationName is supposed to be to make that happen. ...
4
votes
1answer
262 views

When using KVO is it necessary to remove self as an observer of self in -dealloc?

in my NSObject subclass's -init method the instance adds itself as an observer of some of its own keyPaths in order to trigger an action that should occur any time one of the properties in question is ...
4
votes
1answer
183 views

KVO AVAudioPlayer not working

I am trying to observe the "currentTime" property of AVAudioPlayer. But the method isn't even being called... I need it to set the position of a UISlider.. But it's not working. Here's the relevant ...
4
votes
1answer
586 views

Need some tips regarding the Cocoa MVC/KVO patterns

This is a very wide-ranging/vague question, but here goes. Apologies in advance. The app (desktop app) I'm building takes different kinds of input to generate a QR code (I'm just building it to learn ...
4
votes
1answer
536 views

Array of NSManagedObject attributes

I'd like to get an array of the attributes for my NSManagedObject so I can use KVO to export them. I can create an array manually and then iterate through it, however, I'd like to get this list ...
4
votes
2answers
256 views

Tool for debugging KVO/Bindings in Cocoa

Is there any tool to log current observers of a given object, in the spirit of what "gdb info gc-roots" does? I found "gdb info gc-references" could do that (sort of) as a by-product of its original ...
4
votes
4answers
983 views

Cocoa Key Value Bindings: What are the explanations of the various options for Controller Key?

When I bind a control to an NSArrayController using Interface Builder, there are a variety of options under the "Controller Key" field in the bindings inspector. I understand what "arrangedObjects" ...
4
votes
3answers
362 views

How do I observe the creation/destruction of an object instance?

I am smitten by KVC/KVO. Super powerful. There is one problem though. I'm trying to be true the the MVC etho but I see no way to use an observation pattern to monitor the allocation or deallocation of ...
4
votes
2answers
5k views

Key-Value Coding with Objective-C

I had a straight forward approach of turning Key/Value pairs of an XML excerpt into an NSDictionary when I started a simple iPhone application. The problem is, I need to turn those NSDictionary's ...
4
votes
4answers
583 views

Case-insensitive KVC in Cocoa?

I'd appreciate some feedback on a particular approach I'm thinking of using. The scenario is below. I have an object (lets call it MObject) that has a number of properties, say, x and y coordinates, ...
3
votes
3answers
117 views

Autoupdating NSManagedObject property modification timestamp

I have an NSManagedObject with two properties: NSNumber *score; NSDate *score_timestamp; I want my score_timestamp field to be updated each time I update score. I obviously cannot use -willSave ...
3
votes
2answers
46 views

Is there a way to tell when KVO starts/ends for a particular value?

I have some values that are computed over collections, and may or may not be displayed (and thus may or may not have an observer) at any given time. I would rather not have to track all the members ...
3
votes
1answer
165 views

Objective-C Automatic Reference Counting (ARC) and Key-Value Observing

I'm writing an Objective-C application using ARC and it's definitely a great improvement even though I never really minded retain counts. However, there's one case I couldn't find in the documentation ...
3
votes
1answer
108 views

Supporting KVO when using composition to extend NSMutableDictionary

I have an array of NSMutableDictionary objects which are displayed in a master–detail interface which has a few text fields and a bunch of check boxes. The controls are bound to the dictionary keys, ...
3
votes
1answer
196 views

Using KVO to reload data in UITableView

I've been expanding my horizons recently and am trying to start utilizing KVO more in my programming. I have a view controller in my iPhone application which acts as the datasource and delegate for ...
3
votes
1answer
167 views

Key/value observing not firing for property defined as: @property (readwrite, retain) __attribute__((NSObject)) CGImageRef thumbnailImage

I have a class with a property definition like so: // Interface @property (retain) __attribute__((NSObject)) CGImageRef thumbnailImage; // Implementation @synthesize thumbnailImage; The problem is ...
3
votes
1answer
257 views

Objective-C undo manager questions

I'm reading a book on Objective-c and learning about the undo manager. The concept seems very simple but the provided example seems overly complex. Basically, I have a table view connected to an ...
3
votes
1answer
101 views

how to see what an object is observing in cocoa

I know there is a way to see what properties are being observed on an object with observationInfo but is there a way to see what an object is set to observe? [otherObject addObserver:zombie ...
3
votes
2answers
244 views

UIView KVO: Why don't changes to “center” cause KVO notifications for “frame”?

I'm trying to deepen my understanding of these mechanisms. I have a UIView that is touch enabled, and can update its own center property. My understanding is that the frame property is a synthesized ...
3
votes
1answer
55 views

Is there an easier way to handle many pieces of data changing in an ios app?

I have an app I am working on, and it has a number of pieces of data that are interdependent. Basically, I have a set of number fields that are used to calculate other number fields, which are then ...
3
votes
2answers
526 views

Implement own setter or use KVO?

In short, when the property value changing, I have to update some logic in my code, for example: - (void)setProp:(NSString *)theProp { if (prop != theProp){ [prop release]; prop = [theProp ...
3
votes
0answers
172 views

Observing changes to a UIView's window and superview properties

I'm looking for a way to be notified when a generic UIView is added or removed from the visible view hierarchy. KVO looked like the perfect thing to use in this case, but observing changes to a view's ...
3
votes
2answers
106 views

Simple setter in objc still generates change value notification

I have simple setter like - (void) setValue: (int) newVal { value = newVal; } where value is int value; instance variable. How is it possible that using [myobj setValue: 10]; still generates ...
3
votes
1answer
1k views

NSManagedObject and KVO vs Documentation

I have a custom NSManagedObject subclass, say, Person. I also have a UIView registered with -addObserver:forKeyPath:options:context: to observe various properties of a Person, some of which are ...
3
votes
2answers
233 views

Prime examples of data-binding

I am implementing a barebones framework in JavaScript that just provides data-binding between objects. The data-binding can either be one-way or two-way, and potentially have multiple objects bound on ...
3
votes
1answer
2k views

Key Value Observing with an NSArray

I've looked on SO for examples of using Key Value Observing with an NSArray (or NSMutableArray) and apparently you need to use an NSArrayController (which unlike KVO I'm not familiar with), but I ...
3
votes
1answer
528 views

Performance speed of KVO and NSNotifications?

Should I be afraid of using Key-Value Observations (KVO) and NSNotifications? I'm beginning to use them in my app, but I'm a little unfamiliar with the concept of something that could possibly be ...

1 2 3 4 5 6