Type Method 型メソッド

stringWithFormat:

Returns a string created by using a given format string as a template into which the remaining argument values are substituted. 与えられた書式設定文字列を、それへと残りの引数値が置き換えられるテンプレートとして使うことで作成される文字列を返します。

Declaration 宣言

+ (instancetype)stringWithFormat:(NSString *)format, ...;

Parameters パラメータ

format

A format string. See Formatting String Objects for examples of how to use this method, and String Format Specifiers for a list of format specifiers. This value must not be nil. 書式設定文字列。Formatting String Objectsをこのメソッドを使う方法の例として、String Format Specifiersを書式設定指定子のリストとして見てください。この値は、nilではいけません。

...

A comma-separated list of arguments to substitute into format. formatへと置換することになる、引数のコンマ区切りのリスト。

Return Value 戻り値

A string created by using format as a template into which the remaining argument values are substituted without any localization. formatを、それへと残りの引数値が何らローカライゼーションなしに置き換えられるテンプレートとして使うことによって作成される文字列。

Discussion 議論

This method invokes initWithFormat:locale:arguments: without applying any localization. This is useful, for example, when working with fixed-format representations of information that is written out and read back in at a later time. このメソッドは、initWithFormat:locale:arguments:を何らローカライゼーションなしに発動します。これが便利なのは、例えば、書き出されるそして後刻に読み戻される、固定された書式設定表現の情報を扱う場合です。

See Also 参照

Creating and Initializing Strings 文字列の作成と初期化