I remember reading somewhere about one of Xcode's features which will cause all strings in your application to appear as double in length, simply by repeating their contents. For example, if a UILabel contains the text Username:
, it will now contain the text Username:Username:
. I can't find any reference to this on Google. How can I access this feature in Xcode?
The idea is that it can help you debug localization issues, since some languages have very long strings compared to English.
Update: I believe I heard about it in the WWDC 2012 Auto Layout by Example (232) video.
(Search keywords: NSString, double, debug)