17
votes
What are those little Xcode tips & tricks you wish you knew about 2 years ago?
You can have Xcode run the preprocessor over your Info.plist file:
<key>CFBundleShortVersionString</key>
#ifdef DEBUG
<string>1.0 (debug)</string …
0
votes
Where to find the Objective-C Runtime and Headers?
Not sure what "documentation" you're looking at, but the header files for the system frameworks can be found under their containing frameworks at /System/Library/Frameworks. So NSObject.h resides a …
