Instance Method インスタンスメソッド

stringByAppendingFormat:

Returns a string made by appending to the receiver a string constructed from a given format string and the following arguments. レシーバに、ある与えられた書式設定文字列とその続く引数から組み立てられるある文字列を加えることによって作られる文字列を返します。

Declaration 宣言

- (NSString *)stringByAppendingFormat:(NSString *)format, ...;

Parameters パラメータ

format

A format string. See Formatting String Objects for more information. This value must not be nil. 書式設定文字列。Formatting String Objectsを詳細として見てください。この値は、nilではいけません。

...

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

Return Value 戻り値

A string made by appending to the receiver a string constructed from format and the following arguments, in the manner of stringWithFormat:. レシーバに、formatとその続く引数から組み立てられる文字列を、stringWithFormat:の流儀で加えることによって作られる文字列。

See Also 参照

Combining Strings 文字列を結合する