I have thousands of line of code written for iOS 4. The codebase contains many calls to retain
and release
, which cause errors when the project is updated to iOS 5 and ARC.
Is there a way to automatically convert Manual Retain-Release (MRR) code to Automatic Reference Counting (ARC)?
In Xcode 6+, the command is now:
Edit > Convert > To Objective-C ARC...
From the Xcode 4.2 release notes: