Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

iOS Objective-C Basics (Retired) Foundation Framework NSNumber

Vitaly Myshlaev
Vitaly Myshlaev
5,883 Points

compiler error

Double checked my answer and run it in Xcode. It works, but your complier show errors.

NSNumber *foxtrot; NSNumber *planck; foxtrot = [[NSNumber alloc] initWithInt:24]; planck = [[NSNumber alloc] initWithFloat:6.626]; NSLog(@"foxtrot %@", foxtrot); NSLog(@"planck %@", planck);

1 Answer

Stone Preston
Stone Preston
42,016 Points

While your code is technically correct, the challenge asks you to use literals: ** Declare a variable of type NSNumber named foxtrot. Initialize it with a NSNumber literal of value 24 **

NSNumber *foxtrot = @24; 
 NSLog(@"foxtrot %@", foxtrot); 
 NSNumber *planck = @6.626; 
 NSLog(@"planck %@", planck);