Difference between revisions of "XCode"
From Richard's Wiki
(2 intermediate revisions by the same user not shown) | |||
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";}' | ||
+ | |||
+ | === VLC on IOS === | ||
+ | * [http://rick-hawkins.blogspot.com/2010/11/compiling-vlc-in-xcode-for-ipad.html (How To) Compiling VLC in XCode for iPad simulator and device] | ||
+ | |||
+ | === 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] |
Latest revision as of 17:45, 7 November 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";}'