Given an NSArray of NSStrings, is there a quick way to join them together into a single NSString (with a Separator)?
NSArray * stuff = /* ... */; NSString * combinedStuff = [stuff componentsJoinedByString:@"separator"];
This is the inverse of -[NSString componentsSeparatedByString:].
-[NSString componentsSeparatedByString:]