show/hide this revision's text 2 Added note about global state.

Why do you write the grossWage accessors (updateGrossWage and getGrossWage) by hand? And are you sure you simply want to simply assign the given gross wage instead of retaining or copying it? This way when the caller gets rid of his gross wage instance you will end up with released gross wage in the userData object:

NSNumber grossWage = [[NSNumber numberWithInt:12] retain];
[userData updateGrossWage:grossWage];
[grossWage release];
// Now userData’s grossWage points to released object.

This could be the cause of the problem. If not, I’d suggest posting a smaller piece of complete example code – without the notification stuff and with the calling context.


P.S. Such shared objects as your UserData are usually bad for your design (= leading to pain in code), see for example this article by Miško Hevery and other articles on his blog.

show/hide this revision's text 1

Why do you write the grossWage accessors (updateGrossWage and getGrossWage) by hand? And are you sure you simply want to simply assign the given gross wage instead of retaining or copying it? This way when the caller gets rid of his gross wage instance you will end up with released gross wage in the userData object:

NSNumber grossWage = [[NSNumber numberWithInt:12] retain];
[userData updateGrossWage:grossWage];
[grossWage release];
// Now userData’s grossWage points to released object.

This could be the cause of the problem. If not, I’d suggest posting a smaller piece of complete example code – without the notification stuff and with the calling context.