Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I can't figure out why it's not working, I have a NSString which I need to convert to NSNumber (to save it to Core Data) e.g

NSLog(stringNum); 

returns 1

NSNumberFormatter * f = [[NSNumberFormatter alloc] init];
[f setNumberStyle:NSNumberFormatterDecimalStyle];
NSNumber *myNumber = [f numberFromString:stringNum];
[f release];

NSLog(@"myNumber = %i", myNumber); 

returns 120882496 or something like this

What am I missing? Thanks for help

share|improve this question
possible duplicate of How to convert an NSString into an NSNumber – Björn Aug 9 '10 at 12:26
@Björn: This is obviously where he got the code from, but his problem is another one, namely the NSLog-error. – Pascal Aug 9 '10 at 12:33

2 Answers

up vote 12 down vote accepted

It's now an object, not an integer, therefore you must use %@ in NSLog, not %i.

share|improve this answer

myNumber is an object, so the format should be

@"myNumber = %@"

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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