[iOS]DEBUG flag

我上禮拜才知道Android 好像沒有這個東西


常用的作法是做出不同的 conditional log statement

#if( DEBUG )  
#define MYLog(args...) NSLog(args)  
#else  
#define MYLog(args...)  
#endif  

沒有留言: