+2 votes
in C Plus Plus by
How to convert an NSArray to a string in Objective-C?

1 Answer

0 votes
by
NSString * result = [[array valueForKey:@"description"] componentsJoinedByString:@""];
...