iOS宏編譯的兩種方法
第一種 適合修改原基礎上得調試代碼
#ifdef DEBUG
#define NSLog(...) NSLog(__VA_ARGS__)
#define debugMethod() NSLog(@"%s", __func__)
#else
#define NSLog(…)
#define debugMethod()
#endif
----------------------------------------------------------------------------
第二種 適合開發起步階段
#define WXDEBUG 1
#if WXDEBUG
#define WXLog(xx, ...) NSLog(@"%s(%d): " xx, __PRETTY_FUNCTION__, __LINE__, ##__VA_ARGS__)
#else
#define WXLog(xx, …) ((void)0)
#endif // #ifdef DEBUG
//使用: WXLog(@"test");