Can a custom xcode template partially and selectively enable ARC (Automatic Reference Counting)?
Problem: A library I use won't support ARC (Automatic Reference Counting). Background (for those unfamiliar to ARC): http://developer.apple.com/library/ios/#releasenotes/ObjectiveC/RN-TransitioningToARC/_index.html Manual Solution: Add the -fno-objc-arc option for each implementation file of the library, and otherwise use ARC normally in my application code. Observation: The following template file can be copied and most likely be used to either turn ARC completely ON or OFF (without adding the compiler flags above -- the in-between solution that I need): "/Developer/Platforms/iPhoneOS