03 2016 档案

在.pch 文件中加入 app 在发布时候 禁止打印
摘要:#ifdef DEBUG #define NSLog(...) NSLog(__VA_ARGS__) #define debugMethod() NSLog(@"%s", __func__) #else #define NSLog(...) #define debugMethod() #endif 阅读全文

posted @ 2016-03-09 16:07 D_ye了淡淡 阅读(128) 评论(0) 推荐(0)

Mac 显示与隐藏文件的命令
摘要:显示Mac隐藏文件的命令:defaults write com.apple.finder AppleShowAllFiles -bool true 隐藏Mac隐藏文件的命令:defaults write com.apple.finder AppleShowAllFiles -bool false或者 阅读全文

posted @ 2016-03-09 16:06 D_ye了淡淡 阅读(149) 评论(0) 推荐(0)