1.打包時不容許項目中有打印的日誌,能夠在pch中加入下面這段代碼便可日誌
#ifdef DEBUG # define Log(fmt, ...) NSLog((@"%s [Line %d] " fmt), __PRETTY_FUNCTION__, __LINE__, ##__VA_ARGS__); #else # define Log(...) #endif