以下の「String Format Specifiers」の要点部分を解説します。 String Format Specifiers http://developer.apple.com/documentation/Cocoa/Conceptual/Strings/Articles/formatSpecifiers.html こちらはC言語のprintf()関数の第一引数で使えるものと同様な指定子であり、 NSLog や NSString:stringWithFormat: などで使用できます。 フォーマット指定子 説明 %@ descriptionWithLocale: の戻り値。 descriptionWithLocale: が存在しない場合は description の戻り値 %% %を使うとき %d,%D,%i 符号付き32bit integer(long) %u,%U 符号なし3

