Difference between revisions of "XCode"
From Richard's Wiki
(New page: * To change default company name for new files in XCode, do this in a Terminal window (it edits the file Library/Preferences/com.apple.Xcode.plist): defaults write com.apple.Xcode PBXCust...) |
|||
Line 1: | Line 1: | ||
* To change default company name for new files in XCode, do this in a Terminal window (it edits the file Library/Preferences/com.apple.Xcode.plist): | * To change default company name for new files in XCode, do this in a Terminal window (it edits the file Library/Preferences/com.apple.Xcode.plist): | ||
defaults write com.apple.Xcode PBXCustomTemplateMacroDefinitions '{"ORGANIZATIONNAME" = "Interchart";}' | defaults write com.apple.Xcode PBXCustomTemplateMacroDefinitions '{"ORGANIZATIONNAME" = "Interchart";}' | ||
+ | |||
+ | * [http://cocoawithlove.com/2008/12/ordereddictionary-subclassing-cocoa.html OrderedDictionary: Subclassing a Cocoa class cluster (an implementation of an ordered NSMutuableDictionary)] |
Revision as of 03:20, 10 March 2011
- To change default company name for new files in XCode, do this in a Terminal window (it edits the file Library/Preferences/com.apple.Xcode.plist):
defaults write com.apple.Xcode PBXCustomTemplateMacroDefinitions '{"ORGANIZATIONNAME" = "Interchart";}'