I'm working on an app with some old pre-ARC libraries (cocos2d 2.x), and I'm attempting to refactor my project for ARC. I've gone through and tagged all the pre-ARC files -fno-objc-arc in the build phases. However when I refactor for ARC it's still finding issues in these files. It finds 21 issues with CCActionManager.m and then quits. I've tried removing CCActionManager.m and then it just moves onto the next Cocos2d file that has issues. I've removed and re-added the -fno-objc-arc tag to the files, to no avail.
I've done this before with a different app and it worked no problem. I've googled and googled and I can't seem to find anyone else who has had this issue. I've cleaned the project, reverted back to the last commit and tried again, everything I can think of, it refuses to honor the -fno-objc-arc and continues to find issues with these files! What could I be doing wrong?