Hi,
I am simply logging a number using a for-loop.
for (i=0; i<6; i++)
{
NSLog(@"%d",i);
}
It prints the number in new line like:
1
2
3
4
5
But I want to see it formatted on one line like 12345. How can I do this, any idea?
thanks Aaryan