So, I have an NSArray containing NSString. How can I convert the NSArray to NSString separating them by new line.
Use componentsJoinedByString:
NSString *combinedString = [myArray componentsJoinedByString:@"\n"];