安装XcodeColors插件 下载地址: https://github.com/robbiehanson/XcodeColors 安装方法: 下载并解压缩XcodeColors-master.zip 打开XcodeColors项目,编译项目可以自动将插件安装至~/Library/Application Support/Developer/Shared/Xcode/Plug-ins/XcodeColors.xcplugin 重新启动Xcode 再次打开XcodeColors项目 运行TestXcodeColors测试插件是否安装成功 下载CocoaLumberjack开源框架 下载地址: https://github.com/CocoaLumberjack/CocoaLumberjack 新建项目,将CocoaLumberjack拖入项目中 创建Common.h #ifdef DEBUG static const int ddLogLevel = LOG_LEVEL_VERBOSE; #else static const int ddLogLevel = LOG_LEVEL_OFF; #endif 在xxx-Prefix.pch中添加Common.h的引入 #import "Common.h" 实例化DDLog 在- (BOOL)application:(UIApplication