读书人

NSLog 加强

发布时间: 2012-11-08 08:48:11 作者: rapoo

NSLog 增强

#ifdef DEBUG

# ? define DLog(fmt, ...) NSLog((@"%s [Line %d] " fmt), __PRETTY_FUNCTION__, __LINE__, ##__VA_ARGS__);

#else

# ? define DLog(...)

#endif

?

// ALog always displays output regardless of the DEBUG setting

#define ALog(fmt, ...) NSLog((@"%s [Line %d] " fmt), __PRETTY_FUNCTION__, __LINE__, ##__VA_ARGS__);

?

?

?

使用时, ?替换NSLog,使用 ?DLog或ALog

读书人网 >移动开发

热点推荐