How to enable/disable ARC in an xcode project?

hollow7 picture hollow7 · Jan 26, 2012 · Viewed 89.5k times · Source

If a project has already been created with ARC disabled, how do I enable it and vice versa?

Answer

Morothar picture Morothar · Jan 26, 2012

Open your project and select Edit -> Refactor -> Convert to Objective-C ARC. This will start checking your code if it is ready for the conversion.

Good link to read: Everything you need to know about automatic reference counting (ARC)

How to disable ARC has been answered here