Search Results

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 …
1
vote

Setting default fonts in NSTextView

NSFont* font = <whatever>; [textView setFont: font]; …