Can anyone tell me what is the symbol used for new line?
In the C language we use \'\\n\' for new line. What do we use in Objective-C?
\'\\n\'
is it sam
It's the same, but if you are printing to the console, you should use
NSLog(@"This is a console statement\n on two different lines");
Hope this helps.