I want to know about the difference between the NSLog and the Printf statement in Objective-C (for application purpose...!)
NSLog
Printf
Why do all deve
I see two main differences between NSLog and printf:
printf
NSLog supports NSString objects through the %@ extension;
NSString
%@
furthermore, NSLog automatically adds time and process data (e.g., 2012-01-25 17:52:10.479 process[906:707])