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) Advanced Objective-C Dynamic Typing

Advanced Objective-C stage 6 challenge

I'm having trouble with the second challenge:

Assign an NSNumber literal with a value of '4' to the variable 'thing'.

id thing = nil; (this is the first question's answer)

Any help would be appreciated.

1 Answer

NSNumber literals are written like this @1 or @2 or @3...

So, just assign @4 to thing on a new line and don't forget to end the line with ;.

Got it. Thanks Dino!