It's getting pretty frustrating to keep struggling with this one. I'm not sure if it's Xcode 4.4 or Mountain Lion (I installed both simultaneously), but once again my code is being anti-aliased (font smoothing) in Xcode.
I was previously able to fix this issue with the following instructions, taken from this question, but neither seem to work now:
For XCode 3.x I would do the following:
defaults write com.apple.xcode AppleAntiAliasingThreshold 24
.For XCode 4 the domain of the user defaults change to com.apple.dt.Xcode. For XCode 4
defaults write com.apple.dt.Xcode AppleAntiAliasingThreshold 24
should get you what you want.
How do I get Xcode back to a useable state?