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.
|
|
|
|
|
|
|
Since See also: NSString Format Specifiers |
||||
|
|
|
Here is a little snapshot from "Programming in Objective-C 2.0"
|
||
|
|
|
|
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 |
||
|
|
|
|
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 |
||
|

