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 method as my context is saved occasionally, and score_timestamp won't be up to date. So I should either override -setScore: or setup my managed object as a key-value observer for its own score field.

The -setScore: solution seems easy:

- (void) setScore:(NSNumber *)score
{
    [self willChangeValueForKey:@"score"];
    [self setPrimitiveScore:score];
    [self didChangeValueForKey:@"score"];

    self.score_timestamp = [NSDate date];
}

Are there any caveats in doing things that way? Or I should use a KVO solution?

Update

So far I've received two responses that my code will not work through setValue: forKey: and I'm still waiting for example. Naive calling [(NSManagedObject *)myObject setValue:value forKey:@"score"] calls my setter all the same.

So if I switch to KVO solution, should I addObserver: in all awake methods and remove it in willTurnIntoFault? Or that's not that simple?

link|improve this question

Seriously, both answerers stating that setValue... wont work are wrong. You can test this yourself quite trivially by putting a breakpoint in your accessor, then changing the value using setValue. – jrturton Jan 1 at 22:13
@jrturton I've tested it already, it surely gets called. But I'm not a Core Data expert to be sure if there's another way of changing my property without accessor. I mean the way to be used occasionally in real code. – iHunter Jan 1 at 22:16
Nope. All core data calls will go through your setter (possibly via setValueForKey first). It's part of the encapsulation principle. You could have some freaky direct access to the ivar but this would have to be something you'd written yourself which would probably also break the managed object context. You wouldn't do that to yourself, would you? – jrturton Jan 1 at 22:22
@jrturton Yeah, that's a great explanation! I was thinking of the same from the beginning (otherwise I'd immediately start with KVO), but you see, some people say that's not correct :) It would be great if you create an answer for me to mark it. – iHunter Jan 1 at 22:28
Haven't I already? – jrturton Jan 1 at 22:31
show 1 more comment
feedback

3 Answers

up vote 2 down vote accepted
+50

The implementation in your question is fine. Any KVC attempt to update your value will also go through the setter method (setValue: forKey: simply searches for an accessor method matching setKey, see here for details).

link|improve this answer
1  
I see "You must not override this method" in NSManagedObject -didChangeValue: documentation! – iHunter Dec 31 '11 at 9:25
That is an excellent point! I'd better think of a better answer... – jrturton Dec 31 '11 at 11:50
I've edited your answer because it began to get +1s while being dangerous. Thank you for your effort to help me, to express my gratitude I've +1ed some of your answers to other questions (they are of great help too :) – iHunter Jan 1 at 22:11
I don't think it got any upvotes in its previous version, but fair enough. It's a valid edit! – jrturton Jan 1 at 22:15
@iHunter: You just added the warning, and now you're proposing to remove it? What's going on here? If the warning is valid, it should stay there. – Cody Gray Jan 1 at 22:44
show 4 more comments
feedback

In this method, if for any reason you modify the object not as your custom subclass, but as an NSManagedObject using setValue: forKey: the date will not be updated.

link|improve this answer
Could you please provide an example? – iHunter Dec 28 '11 at 23:39
feedback

You're looking for Key-Value Observing

[objectWithArray addObserver:self 
                  forKeyPath:@"score"
                     options:NSKeyValueObservingOptionNew 
                     context:nil];

Then to observe it:

-(void)observeValueForKeyPath:(NSString *)keyPath 
                      ofObject:(id)object 
                        change:(NSDictionary *)change 
                       context:(void *)context 
{
    //Check if [change objectForKey:NSKeyValueChangeNewKey] is equal to "score" 
    //and update the score_timestamp appropriately
}

You should register for the notification when you awake from fetch and unregister when you fault, I believe.

link|improve this answer
Yeah, KVO is a good solution here, but I don't see a problem in my existing code. I suspect setting another property in setter is not a good idea, but I want to know why, because I see it works :) – iHunter Jan 1 at 21:43
If you can guarantee that your code will only ever use the dynamically generated getter/setter for this property, your code should work, but if you ever use the setValue:forKey: the timestamp won't be updated. – Ash Furrow Jan 1 at 21:47
1  
@iHunter - nothing wrong in settIng another property in a setter. No different to setting it in any other code. If you were setting the same property, you'd be in trouble, but that isn't the case here. – jrturton Jan 1 at 21:48
And using KVO in NSManagedObject to observe self requires accurate adding/removing in all awake/willTurnIntoFault methods. Or not in all? – iHunter Jan 1 at 21:49
@AshFurrow - that is not the case. setValue: forKey: just searches for the correctly named accessor method and calls it, as stated in the documentation linked in my answer. – jrturton Jan 1 at 21:51
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.