码迷,mamicode.com
首页 > 其他好文 > 详细

自定义NSLog

时间:2015-04-16 19:57:50      阅读:93      评论:0      收藏:0      [点我收藏+]

标签:ios

#if DEBUG

#define NSLog(FORMAT, ...) {\

                NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];\

                [dateFormatter setDateStyle:NSDateFormatterMediumStyle];\

                [dateFormatter setTimeStyle:NSDateFormatterShortStyle];\

                [dateFormatter setDateFormat:@"HH:mm:ss:SSSSSS"];\

                NSString *str = [dateFormatter stringFromDate:[NSDate date]];\

                fprintf(stderr,"\ntime:%s fileName:%s line:%d function:%s content:%s\n", [str UTF8String], [[[NSString stringWithUTF8String:__FILE__] lastPathComponent]UTF8String], __LINE__, __FUNCTION__, [[NSString stringWithFormat:FORMAT, ##__VA_ARGS__] UTF8String]);\

}

#else

#define NSLog(FORMAT, ...) nil

#endif


note:

该自定义NSLog只在DEBUG模式下有效。

自定义NSLog

标签:ios

原文地址:http://blog.csdn.net/workresource/article/details/45078705

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!