Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私たちが文字列で使用するこれらのものは何ですか?
•<code>%@-文字列
•<code>%i-intiger
•<code>%f-float
名前はありますか?そして、%___どこかにすべての可能な値のインデックスがありますか?
%___
それらは文字列フォーマット指定子と呼ばれます:これがリストです。
https://developer.apple.com/library/mac/#documentation/Cocoa/Conceptual/Strings/Articles/formatSpecifiers.html
これらはCから継承された機能であり、文字列フォーマッタ、またはAppleの用語ではフォーマット指定子と呼ばれます。Cでは、printf出力をフォーマットするために使用されます。
printf
詳細については、Wikipedia、cplusplus、またはADCを参照してください。
そのNSStringフォーマットメソッドとCFStringフォーマット関数はIEEEprintf仕様に従います。
例
NSLog(@"%@",yourString]; NSLog(@"%d",yourInt]; NSLog(@"%f",yourFloat];