I need to output one line with two calls to NSLog. I thought the code was:
int i = 0; NSLog(@"Number "); ... NSLog(@"%d", i);
Will show:
Number 0
But he prints:
Number 0
NSLog inserts a new line automatically. How do I add the first call to NSLog?