web-dev-qa-db-ja.com

Objective-Cで配列に参加する

NSMutableArrayを文字列に変換する方法を探しています。このRuby配列メソッドと同等のものはありますか?

>> array1 = [1, 2, 3]
>> array1.join(',')
=> "1,2,3"

乾杯!

128
Codebeef
NSArray  *array1 = [NSArray arrayWithObjects:@"1", @"2", @"3", nil];
NSString *joinedString = [array1 componentsJoinedByString:@","];

componentsJoinedByString: は、指定された文字列で配列内のコンポーネントを結合し、配列の文字列表現を返します。

272
Jason Coco

探しているメソッドはcomponentsJoinedByStringです。

NSArray  *a = [NSArray arrayWithObjects:@"1", @"2", @"3", nil];//returns a pointer to NSArray
NSString *b = [a componentsJoinedByString:@","];//returns a pointer to NSString
NSLog(@"%@", b); // Will output 1,2,3
17
Rémy

NSArrayクラス参照

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