Is there any function that does what NSLog does but without the new line at the end?
Asked
Active
Viewed 9,286 times
3 Answers
9
see this http://borkware.com/quickies/one?topic=NSString
excerpted from that page:
void LogIt (NSString *format, ...)
{
va_list args;
va_start (args, format);
NSString *string;
string = [[NSString alloc] initWithFormat: format arguments: args];
va_end (args);
printf ("%s\n", [string UTF8String]);
[string release];
} // LogIt
just customize the printf to suit your needs

Parag Bafna
- 22,812
- 8
- 71
- 144

tato
- 5,439
- 4
- 31
- 27
-
1NSString cString is deprecated. Use NSString UTF8String instead. – galactikuh Jun 01 '16 at 18:38
4
You can use printf(), but the time won't be displayed, and you won't be able to use the "%@" sequence for objects.
That said, you can implement your own logging function, using printf(), and adding support for objects. You will need to know how to deal with C variable arguments.

Macmade
- 52,708
- 13
- 106
- 123
1
you can use some trick. use special unicode character like:u00a0
NSLog(@"\n\n\n\u00a0")