I have an iOS app that I want to convert to using ARC. I would just use the migration tool, but it errors out for me consistently during the preview phase.
I know I can use the -fobjc-arc
compiler directive on a file-by-file basis, but I want to enable ARC on the entire project, then turn off individual classes using -fno-objc-arc
.
New projects in 4.2 can use ARC by default, so there must be a switch somewhere.
Can anyone help me to convert the project to ARC