NSNumber out of scope? - Stack Overflow most recent 30 from stackoverflow.com2009-12-12T02:30:27Zhttp://stackoverflow.com/feeds/question/910186http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/910186/nsnumber-out-of-scope1NSNumber out of scope?moigno2009-05-26T11:21:26Z2009-05-26T13:49:35Z
<p>I've written an Objective-C class and I'm using a shared instance of it across several of the views in my iPhone project. Its member variables include bools, ints, NSStrings and one NSNumber. The shared instance seems to work just fine across the scope of my application, except for the NSNumber which the debugger tells me is "out of scope" once the shared instance has been accessed for the 2nd or subsequent times.</p>
<p>Here's a quick overview of what I'm doing...</p>
<pre><code>// UserData.h
@interface UserData : NSObject {
TaxYears selectedTaxYear;
NSNumber *grossWage; // <--- this is the troublesome member
// ...
NSString *other;
int age;
}
+ (UserData *)getSharedUserData;
@end
// UserData.m
#import "UserData.h"
@implementation UserData
static UserData *sharedUserData = nil; // Points to the shared object
+ (UserData *)getSharedUserData {
if(sharedUserData == nil) {
sharedUserData = [[UserData alloc] initWithTaxYear:0];
[[NSNotificationCenter defaultCenter]
addObserver:sharedUserData
selector:@selector(doTerminate:)
name:UIApplicationWillTerminateNotification
object:nil];
}
return sharedUserData;
}
- (id)initWithTaxYear:(TaxYears)theTaxYear {
if ((self = [super init])) {
}
return self;
}
- (void)updateGrossWage:(NSNumber *)theGrossWage {
grossWage = theGrossWage;
}
- (NSNumber *)getGrossWage {
return grossWage;
}
// ...
@end
</code></pre>
<p>So it is accessed in one view like this:</p>
<pre><code>UserData *userData
userData = [[UserData getSharedUserData] retain];
</code></pre>
<p>And in another view in the same way. But the second time it is accessed, the grossWage member is out of scope, but everything else is fine - this is why I'm stumped. Any ideas?</p>
http://stackoverflow.com/questions/910186/nsnumber-out-of-scope/910302#9103023Answer by zoul for NSNumber out of scope?zoul2009-05-26T11:48:30Z2009-05-26T11:56:31Z<p>Why do you write the <code>grossWage</code> accessors (<code>updateGrossWage</code> and <code>getGrossWage</code>) 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 <code>userData</code> object:</p>
<pre><code>NSNumber grossWage = [[NSNumber numberWithInt:12] retain];
[userData updateGrossWage:grossWage];
[grossWage release];
// Now userData’s grossWage points to released object.
</code></pre>
<p>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>
<p><hr></p>
<p>P.S. Such shared objects as your <code>UserData</code> are usually bad for your design (= leading to pain in code), see for example <a href="http://misko.hevery.com/code-reviewers-guide/flaw-brittle-global-state-singletons/" rel="nofollow">this article</a> by Miško Hevery and other articles on his blog.</p>
http://stackoverflow.com/questions/910186/nsnumber-out-of-scope/910365#9103650Answer by mmc for NSNumber out of scope?mmc2009-05-26T12:08:34Z2009-05-26T12:08:34Z<p>Following up on @zoul's point...</p>
<p>I would declare that grossWage is a property, and synthesize the getters and setters. I think that setter is the source of your problem.</p>
<pre><code>// in UserData.h
@interface UserData : NSObject {
NSNumber *grossWage;
}
@property (nonatomic, retain) NSNumber *grossWage;
// in UserData.m
#import "UserData.h"
@implementation UserData
@synthesize grossWage;
// then do NOT create getters and setters for grossWage
</code></pre>
<p>See if that does not clear it up.</p>
http://stackoverflow.com/questions/910186/nsnumber-out-of-scope/910543#9105432Answer by Marc Charbonneau for NSNumber out of scope?Marc Charbonneau2009-05-26T12:58:29Z2009-05-26T12:58:29Z<p>The reason you're having trouble is not because you should or shouldn't be using a property, but because you're not following memory management rules. NSNumber is an object, and should be retained in your setter. Changing it to a property will fix the immediate problem because Objective-C is handling the work for you, but you should still review memory management because it's 100% certain you're going to continue to have problems until you're comfortable with it.</p>
http://stackoverflow.com/questions/910186/nsnumber-out-of-scope/910783#9107830Answer by cocoafan for NSNumber out of scope?cocoafan2009-05-26T13:49:35Z2009-05-26T13:49:35Z<p>It sounds stupid but check for division by zero. I had the same error and the reason was a division by zero.</p>