首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > 移动开发 >

NSLog 加强

2012-11-08 
NSLog 增强#ifdef DEBUG# ? define DLog(fmt, ...) NSLog((@%s [Line %d] fmt), __PRETTY_FUNCTION__,

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

热点排行