vote up 1 vote down star

i.e. %@ for strings, %f for doubles... I don't know the word for these placeholders but it would be great to have list for how to print booleans and other values.

flag

58% accept rate

4 Answers

vote up 3 vote down check

Since NSLog takes a NSString as its argument, it uses the NSString format specifiers. This is virtually identical to the common printf specifiers. Also, the %@ specifier is not limited to NSString objects, but is for any Objective-C objects. The base NSObject class provides a generic description of the object consisting of its class and its address, but many objects will supply information specific to their type, such as the collection classes (NSArray, NSDictionary) which will supply nicely formated dump of their contents. You can provide this for your own objects that you create by overriding -description (see the documentation for more info, including localization capability).

See also: NSString Format Specifiers

link|flag
"%@" isn't valid for any Objective-C object, only objects that respond to "description". If I were to create my own object deriving from Object (declared in "objc/Object.h"), it won't necessarily be compatible with "%@". – dreamlax Jul 21 at 0:30
This is true, even though that is what the NSString Format Specifiers documentation defines it as. Even adding description is not enough if you're building your own root class. – johne Jul 21 at 3:47
vote up 1 vote down

Here is a little snapshot from "Programming in Objective-C 2.0"

alt text

link|flag
vote up 2 vote down

Also, there's a very nice overview, as well as some tips and tricks, in the most recent "Friday Q&A" posting on Mike Ash's NSBlog blog:

http://www.mikeash.com/?page=pyblog/friday-qa-2009-07-17-format-strings-tips-and-tricks.html

link|flag
vote up 3 vote down

It is a normal C format string with the extension of %@ (which prints any NSObject by querying its -description method, not just NSStrings).

You can see an overview in printf manpage

link|flag
It is a normal C format string with the exception of the (evil) %n conversion specifier. It's not working in objective-C format strings. – Nikolai Ruhe Jul 20 at 12:30

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.