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

componentsJoined(by:)

Constructs and returns an NSString object that is the result of interposing a given separator between the elements of the array. NSStringオブジェクトを作成して返します、それは与えられた分離子を配列の要素の間に挟むことの結果です。

Declaration 宣言

func componentsJoined(by separator: String) -> String

Parameters パラメータ

separator

The string to interpose between the elements of the array. 配列の要素の間に挟むことになる文字列。

Return Value 戻り値

An NSString object that is the result of interposing separator between the elements of the array. If the array has no elements, returns an NSString object representing an empty string. あるNSStringオブジェクト、それはseparatorを配列の要素の間に挟むことの結果です。配列が要素を持たないならば、空文字列を表しているNSStringを返します。

Discussion 議論

For example, this code excerpt writes "here be dragons" to the console: 例えば、このコード抜粋は "here be dragons" をコンソールに書き出します:


NSArray *pathArray = [NSArray arrayWithObjects:@"here", @"be", @"dragons", nil];
NSLog(@"%@",[pathArray componentsJoinedByString:@" "]);

Special Considerations 特別な注意事項

Each element in the array must handle description. 配列の各要素は、descriptionをうまく扱わなければなりません。

See Also 参照

Related Documentation 関連文書