Reputation: 19267
I know you can use -fno-objc-arc flag to disable ARC for files that NOT support ARC in an ARC project.
-fno-objc-arc
Is there any way to enable ARC for files support ARC in a Non-ARC project?
Thanks!
Upvotes: 31
Views: 6020
Reputation: 57149
Yup: add the -fobjc-arc flag the same way.
-fobjc-arc
Upvotes: 62