web-dev-qa-db-fra.com

Rejoignez un tableau dans Objective-C

Je cherche une méthode pour transformer un NSMutableArray en chaîne. Y a-t-il quelque chose de comparable avec cette méthode de tableau Ruby?

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

À votre santé!

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

componentsJoinedByString: joindra les composants du tableau par la chaîne spécifiée et renverra une représentation sous forme de chaîne du tableau.

272
Jason Coco

La méthode que vous recherchez est 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 référence de classe :

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