views:

46

answers:

2

Is there any function that does what NSLog does but without the new line at the end?

A: 

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
A: 

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 cString]);
    [string release];
} // LogIt

just customize the printf to suit your needs

tato