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) Beyond the Basics Literals

2 Answers

Shaun Kelly
Shaun Kelly
5,648 Points

I know but i'm asking if the NSLog(@"%d",number); is a object because we are stating the @ symbol to produce getter and setter methods? and perform object allocation and initialisation in one step and return an instance variable ?

Roberto Alicata
PLUS
Roberto Alicata
Courses Plus Student 39,959 Points

NSLog is a command used to print something in the console.

@"xxxxxx" is used to generate a NSString.

%d is used to tell the format of the variable we'll pass after the string( %d prints out an integer).

number is the variable to format.

so:

NSLog(@"%d", number);

prints the variable number as an integer in the console.