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 trialAdam Mielnicki
724 PointsAdvanced 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
Dino Paškvan
Courses Plus Student 44,108 PointsNSNumber 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 ;
.
Adam Mielnicki
724 PointsAdam Mielnicki
724 PointsGot it. Thanks Dino!