Reputation: 20066
So, I have an NSArray containing NSString. How can I convert the NSArray to NSString separating them by new line.
Upvotes: 0
Views: 444
Reputation: 18290
NSString *combinedString = [myArray componentsJoinedByString:@"\n"];
Upvotes: 14