Difference between revisions of "XCode"

From Richard's Wiki
Jump to: navigation, search
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";}'
 +
 +
==== IOS / iPad / iPhone ====
  
 
* [http://cocoawithlove.com/2008/12/ordereddictionary-subclassing-cocoa.html OrderedDictionary: Subclassing a Cocoa class cluster (an implementation of an ordered NSMutuableDictionary)]
 
* [http://cocoawithlove.com/2008/12/ordereddictionary-subclassing-cocoa.html OrderedDictionary: Subclassing a Cocoa class cluster (an implementation of an ordered NSMutuableDictionary)]
 +
 +
* [http://code.google.com/p/gdata-objectivec-client/source/browse/trunk/Source/#Source%2FXMLSupport Google Data APIs Objective-C Client Library (XMLSupport, GDataXMLNode)]
 +
 +
* [http://www.raywenderlich.com/725/how-to-read-and-write-xml-documents-with-gdataxml How To Read and Write XML Documents with GDataXML]

Revision as of 17:36, 18 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";}'

IOS / iPad / iPhone