How to convert NSArray into NSString in objective-c?
Bearing in mind that you don't say what's in the NSArray, you can do this:
NSArray *arr = [NSArray arrayWithObjects: @"foo", @"bar", @"baz"]; [arr componentsJoinedByString: @","]
2.1m questions
2.1m answers
60 comments
57.0k users