https://github.com/robbiehanson/XcodeColors
$ git clone git://github.com/robbiehanson/XcodeColors.git
Xcode開いてメニューからProduct→Archiveを選択
~/Library/Application Support/Developer/Shared/Xcode/Plug-ins/XcodeColors.xcpluginが出来ていればOK
Xcodeを一旦閉じる
#define XCODE_COLORS_ESCAPE @"\033["
#define XCODE_COLORS_RESET_FG XCODE_COLORS_ESCAPE @"fg;" // Clear any foreground color
#define XCODE_COLORS_RESET_BG XCODE_COLORS_ESCAPE @"bg;" // Clear any background color
#define XCODE_COLORS_RESET XCODE_COLORS_ESCAPE @";" // Clear any foreground or background colorNSLog(XCODE_COLORS_ESCAPE @"fg0,0,255;" @"Blue text" XCODE_COLORS_RESET);