Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I know you can use -fno-objc-arc flag to disable ARC for files that NOT support ARC in an ARC project.

Is there any way to enable ARC for files support ARC in a Non-ARC project?

Thanks!

share|improve this question

1 Answer

up vote 30 down vote accepted

Yup: add the -fobjc-arc flag the same way.

share|improve this answer
It works! Thank you! – fannheyward Jun 29 '12 at 2:19
But it might cause leaks in certain scenarios – Deepukjayan Mar 13 at 12:59
1  
@Deepukjayan could you elaborate -- what scenarios exactly? – Eric Mar 17 at 20:28

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.