Tagged Questions
The key-value-coding tag has no wiki summary.
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 ...
13
votes
1answer
977 views
How does NSValue do its magic?
I have an MVC application. The model has a property that is a struct NSSize. It is writable like this:
- (void)setSize:(NSSize)aSize;
The view sets this NSSize using key-value-coding. However, you ...
9
votes
2answers
391 views
Defining your own key path operators in cocoa
Is it possible to define your own key path operators, such as @avg, @sum, etc…
9
votes
3answers
4k views
What is the right choice between NSDecimal, NSDecimalNumber, CFNumber?
I've read a lot about NSDecimal, NSNumber, NSNumberDecimal, CFNumber... and it begins to be a kind of jungle to me.
Basically, I'm trying to create a simple model class that will handle simple ...
7
votes
1answer
2k views
How do you wrap up a BOOL for KVC in Cocoa/Obj-C?
I'm using KVC to iterating through a few views. Having trouble setting BOOL properties:
[self setValue:YES forKeyPath:[NSString stringWithFormat:@"myView%d.userInteractionEnabled", n]];
I get: ...
6
votes
2answers
123 views
What's the difference between KVC and Properties?
So, I've already read up on the documentation which notes
Objective-C 2.0’s dot syntax and key-value coding are orthogonal technologies. You can use key-value coding whether or not you use the dot ...
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
2answers
264 views
Why does valueForKey: on a UITextField throws an exception for UITextInputTraits properties?
Running this:
@try
{
NSLog(@"1. autocapitalizationType = %d", [self.textField autocapitalizationType]);
NSLog(@"2. autocapitalizationType = %@", [self.textField ...
5
votes
2answers
2k views
How do you tell if a key exists for an object using Key-Value Coding?
I'd like to test whether an object has a writeable @property in the iPhone SDK.
One possible way of doing this is to check the -valueForKey: method, but that seems rather inelegant!
Example:
...
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;
...
4
votes
1answer
183 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
4answers
979 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
4answers
581 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
136 views
How to convert NSValue to NSData and back?
A have a number of NSValue (obtained via KVC valueForKey) that I need to append to an NSData object in order to send it over the network using Game Center. Obviously I will also need to convert the ...
3
votes
1answer
47 views
Which is better- [obj propName] or [obj valueForKey:@“propName”] when using an id pointer?
I have some code that assigns an object to a generic id variable and then does various things depending on the class to which said object belongs (assume that each class has the appropriate property ...
3
votes
1answer
143 views
KVC setNilValueForKey: recommends calling method and not using property accessor
The KVC Documentation says
The key-value coding method setNilValueForKey: method is called when you attempt to set an attribute to nil.
Sounds good so far
... uses setValue:forKey: to set ...
3
votes
3answers
183 views
Using dot notation for instance methods
I was looking at a piece of code today and notice that this particular coder use dot notation to access instance methods (these methods don't take values, they just return value).
For example:
...
3
votes
1answer
256 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
376 views
Using setValuesForKeysWithDictionary with child objects and JSON
I have a json string
{"name":"test","bar":{"name":"testBar"}}
In objective c I have an object
@interface Foo : NSObject {
}
@property (nonatomic, retain) NSString * name;
@property (nonatomic, ...
3
votes
3answers
419 views
Foundation Objective-c: Dictionary with array; dict with dict
Suppose I have a NSDictionary with two sub collections of a NSArray and a NSDictionary:
NSMutableDictionary *mkDict(void){
NSMutableDictionary *dict=[NSMutableDictionary dictionary];
...
3
votes
2answers
105 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
183 views
iPhone key-value coding — test for existence of key
Does iPhone key-value-coding have a way to test whether a class will accept a given key?
That is, without implementing the valueForUndefinedKey: or setValue: forUndefinedKey: method of the target ...
3
votes
1answer
132 views
Creating an Objective-C object that wraps another object with the same interface - KVC/KVO issues
I need to create an object in one class hierarchy that wraps an object from a different one. They both have very similar interfaces, and I'd like to automatically have my wrapper forward messages it ...
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 ...
3
votes
1answer
1k views
What is the KVC Search Pattern for mutableArrayValueForKey?
I'm attempting to understand Cocoa's Key-Value Coding (KVC) mechanism a little better. I've read Apple's Key-Value Programming Guide but am still a little confused about how certain KVC methods ...
3
votes
2answers
1k views
Accessing collection through KVC (to protect collection and be KVO compliant)
I have a class Test which has an array of Foos. I want to provide access to the Foos without exposing the ivar directly. I'm trying to make this KVC compliant (also to pave the way for KVO ...
3
votes
2answers
351 views
Objective C — is there a keypath that will cause an object to return itself?
Given an object foo of class Foo, I want to do the following:
NSString *key = @"some key";
id myObj = [foo valueForKey: key];
and have myObj equal to foo.
Is there a way to do this without ...
3
votes
3answers
250 views
#typedef and KVC in ObjC
I have a class that looks like this:
@interface Properties : NSObject {
@private
NSNumber* prop1;
NSNumberBool* prop2;
//etc
where NSNumberBool is a typedef:
// in MyApp_Prefix.pch
...
3
votes
2answers
3k views
Using valueForKeyPath on NSDictionary if a key starts the @ symbol?
I want to use valueForKeyPath on my NSDictionary, but the problem is that one of the keys is a string that starts with the @ symbol. I have no control over the naming of the key.
I'm having problems ...
3
votes
1answer
2k views
Using key paths in NSPredicates
I have an NSDictionary which contains (my custom) GTPerson objects. GTPerson has an NSMutableSet *parents attribute, on which I use @property and @synthesize.
Out of my NSDictionary, I want to ...
3
votes
1answer
959 views
Cocoa binding to a particular item in an array controller
Is it possible using NSArrayController to bind a NSTextField's value to a particular item in the array? In particular, I want to bind to a property on the first item in the array, and show nothing if ...
2
votes
1answer
52 views
Does key-value coding support declared property's custom accessor name?
Key-Value coding of Cocoa makes get/set operation to properties simple. Anyway documentation says it only recognized pre-defined naming patterns. I think Declared Property could be supported by this ...
2
votes
1answer
64 views
How to pass NSSize and NSRect to PyObjC KVC convenience accessor
I'm writing some AppKit code in PyObjC on Lion, and I want to use the special KVC accessor style, e.g. obj._.field = value instead of obj.setField_(value).
I have success setting NSString- and ...
2
votes
1answer
79 views
KVO differentiating between willChangeValueForKey and didChangeValueForKey - are both necessary?
In line with Apple's own recommendations, when setting KVC/KVO compliant accessors manually, one should include BOTH KVO methods willChange and didChange. This is what I have done in all my manual ...
2
votes
1answer
284 views
Why doesn't setValue:forKeyPath invoked on mutable dictionary throw exception for unknown keypaths?
I have following code:
NSMutableDictionary *dict = [NSMutableDictionary dictionary];
[defs setObject:[NSNumber numberWithInt:100] forKey:@"test1.test2.test3"];
[defs setValue:[NSNumber ...
2
votes
0answers
138 views
What are the pros and cons of KVC compliant data schemes?
What are the pros and cons of making a plist or other storage scheme storing application data KVC compliant?
Do different storage models (plist in application bundle, NSUserDefaults, SQLite, etc) ...
2
votes
2answers
287 views
Use NSPredicates/KVC to grab an array of sibling keys
Another way to word this might be...
NSPredicate "state.country == 'United States'"
is like
SQL "Select * from state where state.country = 'United States'
so how do I do this as a predicate?
...
2
votes
1answer
219 views
ExecuteFetchRequest intermittently throwing exception with same parameters. “not key value coding-compliant for the key”
EDIT Thanks to Matt's post I now understand that I should not be trying to access 'started' as an array. However, if that is the case, I would like to know why this code appears to be working in ...
2
votes
1answer
303 views
Observing the editing property of a UITableViewController
Why can't I observe the editing property of an instance of UITableViewController?
I'm using the following code:
[self addObserver:self
forKeyPath:@"editing"
...
2
votes
1answer
148 views
Do you know of any Key-Value-Coding and Key-Value-Observing session videos on the net?
I know Apple is not the only ressource out there, and many people create great videos in conferences and presentations.
If someone knows a great video or podcast on the topics KVC or KVO, please let ...
2
votes
4answers
120 views
Objective PHP and key value coding
In some part of my code I need something like this:
$product_type = $product->type;
$price_field = 'field_'.$product_type.'_price';
$price = $product->$$price_field;
In other words I need ...
2
votes
1answer
211 views
Using -setValue:forKey: vs “object.var = …”
The difference between these two lines of code is that the second is KVO compliant and the first isn't?
[person setValue:tempPerson.name forKey:@"name"];
person.name = tempPerson.name;
The reason ...
2
votes
1answer
119 views
pyobjc indexed accessor method with range
I'm trying to implement an indexed accessor method for my model class in Python, as per the KVC guide. I want to use the optional ranged method, to load multiple objects at once for performance ...
2
votes
1answer
402 views
Observing NSTreeController's bound CoreData entities for insertion/removal
I am creating my own bindable custom treeview. For that I would like to observe NSTreeController for updates to its items' to-many-relationships. NSTreeController is bound to CD managed object ...
2
votes
2answers
1k views
KVO rocks. Now how do I use it asynchronously?
I am sold on KVO but if used in the obvious way it is synchronous. I would like to use it in a situation where I am firing off many KVO messages in rapid succession and it is causing my app to grind ...
2
votes
2answers
6k views
NSDictionary setValue:
OK, this is driving me nuts -- please tell me I'm not losing my mind!
I declare:
NSMutableDictionary* generalSettingsDict;
im my .h
I init:
generalSettingsDict = [[NSMutableDictionary alloc] ...
2
votes
2answers
2k views
In which situations would an object not be key-value coding compliant?
Currently I'm learning all the stuff around key-value coding.
In the docs they say:
Any object in the key path sequence
that is not key-value coding compliant
for the appropriate key ...
2
votes
3answers
4k views
Cocoa KVC question: “class is not key value coding-compliant”
I'm trying to update some properties with KVC. The properties have been synthesized.
This line works:
myObject.value = intValue;
This doesn't work:
[self setValue:[NSNumber ...