I converted a non-ARC code to an ARC code. I added -fno-objc-arc
in compiler flags to certain files that did not require ARC.
However, I am still receiving 50 errors INSIDE those files which are ARC errors. What to do?
I converted a non-ARC code to an ARC code. I added -fno-objc-arc
in compiler flags to certain files that did not require ARC.
However, I am still receiving 50 errors INSIDE those files which are ARC errors. What to do?
I did it... I did it by adding
-fobjc-arc
to all the Compiler flags of files that require ARC. And adding
-fno-objc-arc
to Compiler flags of files that dont require ARC. And switching on the ARC for the project overall. It works for me.