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!
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

Watson Chang
Courses Plus Student 2,047 Pointstype casting a generic type
the generic variable "thing" is currently nil. how do i typecast it into a NSNumber?
i tried "thing = [NSNumber:@4];"
but it does not work.. thanks.
1 Answer

Unsubscribed User
6,125 PointsJust use the following:
NSNumber *thing = @4;
In this case the "@" is equal to "[NSNumber numberWithInt:]". So you can use this form too:
NSNumber *thing = [NSNumber numberWithInt:4];