379Never use a beta SDK for active development

As seen in iPhone SDK 3.2 beta 2 and the “A signed resource has been added, modified, or deleted.” error message. Solution? Switch back to iPhone SDK 3.1.3 with XCode 3.2.1 Apparently several different versions of XCode (and the Developer Folder) can happily coexist. Just rename one DeveloperBeta or something like that…

365Project templates for PyObjC and RubyCocoa

svn co http://svn.macosforge.org/repository/ruby/MacRuby/trunk/misc/xcode-templates/ ruby-templates svn co http://svn.red-bean.com/pyobjc/trunk/pyobjc/pyobjc-xcode/ python templates Info from here: http://developer.apple.com/mac/library/releasenotes/DeveloperTools/RN-Xcode/index.html

220Linking libxml2 in Xcode

How to link libxml2 in Xcode for use with TouchXML? 1. Copy TouchXML files. They are wrappers to libxml2. 2. Instead of copying an extra copy of libxml2 to the project frameworks, add the following to the target information: Header Search Paths:
/usr/include/libxml2
Other Linker Flags:
-lxml2
(Of course assuming, that libxml2 is present at this location on your system.) In the Target Info, make sure to select the current configuration to see the values. Otherwise you get <Multiple Values> and they look like it’s not possible to edit them. Took me a while to figure out, that changing the configuration [top left] was the key. Duh.

28Changing Xcode Project Name

http://mohrt.blogspot.com/2008/12/renaming-xcode-project.html renamexcodeproject