2
votes
2answers
31 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 …
0
votes
1answer
62 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
3answers
53 views
3 notifications instead of one
I'm developing simple MVC app in Cocoa/Objective-C. I have a strange issue (or misunderstanding) with notifications and KVO.
I have AppController object in MainMenu.xib, hence I i …
0
votes
2answers
219 views
What does “Controller Key” mean in Interface Builder > Inspector > Bindings?
I can't find in the Docs where they explain all those fields and what they mean. Especially "Controller Key" is not clear to me.
0
votes
2answers
184 views
Stopping a loop.
As explained in my earlier question …
This code …
- (void)syncKVO:(id)sender {
NSManagedObjectContext *moc = [self managedObjectContext];
[syncButton setTitle:@"Syncing.. …
0
votes
1answer
46 views
Retrieving the information in the `change` dictionary from KVO.
The method
- (void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void *)context {
}
has a parameter change which is a di …
1
vote
1answer
52 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
…
0
votes
2answers
85 views
iPhone Key-Value Observer: observer not registering in UITableViewController
Hi Fellow iPhone Developers,
I am an experienced software engineer but new to the iPhone platform. I have successfully implemented sub-classed view controllers and can push and po …
0
votes
3answers
66 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 …
0
votes
1answer
104 views
How do I tell a (managed) object to notify its KVOs that one of its properties needs to be recached?
When we have an object who has a property that's generated based on other properties, usually we implement the +keyPathsForValuesAffecting{PropertyName} class method.
What I'm try …
1
vote
3answers
118 views
Help with Key-Value-Observing.
I need a bit of help with KVO, I'm about half way there. What I'm trying to do is trigger a method when something in an Tree Controller changes.
So I 'm using this code to registe …
0
votes
2answers
202 views
Observing a UISlider’s value - iPhone KVO
By default, when I observe the value of a UISlider, it only updates once, when the slider is clicked, not continuously, even thought that is the slider's setting.
Is there a way to …
2
votes
2answers
192 views
Setting up KVO for calculated values, based on calculated values.
So I have two objects, Invoice and InvoiceLineItem. InvoiceLineItem has a property called cost and it is dynamically created based on other properties. To help with the KVO/binding …
5
votes
3answers
938 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:@" …
1
vote
1answer
112 views
How to observe managed object context
Hi,
Whenever i make a change in the objects in the first tab of my application the updates are automatically upated in tab 2 becuase it uses a fetchedResultsController. Now i have …
