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 need to store an int in an array, and I tried this way, converting the int to an NSNumber but integer ends up being 136894816... Can someone please help me with this?

        NSMutableArray *array = [[NSMutableArray alloc] initWithCapacity:5];
        NSNumber *num = [NSNumber numberWithInt:10];
        [array insertObject:num atIndex:0];

        int integer = [array objectAtIndex:0];
share|improve this question

2 Answers

up vote 4 down vote accepted

An NSNumber is not an int. What you are retrieving in your current code is a memory reference. Try this instead:

int value = [[array objectAtIndex: 0] intValue];
share|improve this answer
+1 Yup. Good call. – Dylan Crocker Jan 23 at 6:00

Try

NSNumber* xWrapped = [NSNumber numberWithInt:integer];

    [array_name addObject:xWrapped];
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.