2016年8月2日 星期二

設定正式版不輸出NSLog

在前置編譯檔中 xxx.pch

 #if defined(_DEBUG_)
  #ifndef NSLog
    #define NSLog(m,args...) NSLog(m,##args)
  #endif
#else
  #ifndef NSLog
    #define NSLog(m,args...)
  #endif
#endif

非DEBUG模式NSLog置換空白

沒有留言:

張貼留言