I think you're asking how to make one string out of multiple lines of code. You can use it in combination with the \n character, but they're not related.
You can create a multi-line string by closing your quotes, and then opening them again on the next line. Like this:
Code:
NSLog(@"This is"
"one really"
"long \n string with one"
"break in the middle.", nil);
That will appear like so:
Code:
This isone reallylong
string with onebreak in the middle.
No other punctuation like + or . is requires. Adjacent strings are treated as one string.
Code:
NSLog(@"This \
should \
work \
too." , nil);