10. NSLog 遇到的问题
View -> Debug Area -> Activate Console#define LLog( s, ... ) printf("[ %s:(%d) ] %s :%s\n", [[[NSString stringWithUTF8String:__FILE__] lastPathComponent] UTF8String], __LINE__, __PRETTY_FUNCTION__, [[NSString stringWithFormat:(s), ##__VA_ARGS__] UTF8String])LLog(@"Hello world");
[ ViewController.m:(22) ] -[ViewController viewDidLoad] :Hello worldLast updated
Was this helpful?