2
votes
2answers
34 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 …
3
votes
3answers
93 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 …
0
votes
3answers
102 views
“Key-Value Coding” for Java
In Objective-C on Apple there is something called "Key-Value Coding" that allows you to traverse the object graph using strings similar to filesystem paths. There's an informal pr …
2
votes
2answers
86 views
Using valueForKeyPath on NSDictionary if a key starts the @ symbol?
Hi there,
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 …
0
votes
1answer
66 views
key-value-coding a UIView’s ivars
I'm interested in running some methods when my UIView is changed, either through a frame change or an affine transformation. My best idea is to do this by observing value changes …
0
votes
2answers
211 views
KVC/KVO and bindings: why am I only receiving one change notification?
I'm seeing some quirky behaviour with Cocoa's KVC/KVO and bindings. I have an NSArrayController object, with its 'content' bound to an NSMutableArray, and I have a controller regis …
0
votes
2answers
165 views
Cococa iPhone Question. 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 causi …
0
votes
1answer
137 views
Exception When Setting the Nib Name field in Interface Builder
Hey Guys,
I'm trying to load a view controller from a nib in Interface Builder. My basic setup is this:
MainWindow.xib contains:
All the usual stuff, the app delegate instance, t …
1
vote
2answers
232 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 = [[NSMutableD …
1
vote
2answers
217 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 NSDiction …
1
vote
1answer
98 views
Accessing constants using Key-Value Coding in Objective-C
I'm making a program that has a lot of constants. I decided to put them all into a separate class and I'm importing it by the classes that need it. The files look similar to this
…
0
votes
4answers
180 views
NSTableColumn bound to a BOOL value
i have NSTableView bound to an NSArrayController. in my model i have a BOOL field. i'm trying to bind that value to the column. it displays correctly (1 where value is YES and 0 wh …
1
vote
3answers
526 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 nu …
0
votes
1answer
84 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 ma …
2
votes
2answers
159 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 app …
