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

Noob question

I'm being asked in one of the challenges to assign an NSNumber literal 'thing' to '4'. The challenge before had me declare an id variable named 'thing' and set it to 'nil'. This line worked but the NSNumber one does not. Please help.

This is my code...

id thing = nil; NSNumber *thing = @4;

2 Answers

Hi Frank,

The id type in Objective-C is a special, dynamic data type. It can take on pretty much any value, including an NSNumber literal. Thus, we can simply assign the NSNumber literal, to thing, as such:

thing = @4;

Or, for example, if you wanted to assign it an NSString literal instead:

thing = @"Woo!";

Hope this helps!

Thanks Matt.