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: @","]
1.4m articles
1.4m replys
5 comments
57.0k users