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.

With ARC enabled, shouldn't the Preprocessor insert retain/release/autorelease calls?

When I let Xcode generate a preprocessed file, none of those show up?

share|improve this question

1 Answer

up vote 1 down vote accepted

ARC happens at a different level than the C preprocessor. At the time the C preprocessor runs, there isn't enough information to determine where to place the retain/release calls, because the preprocessor is just a textual substitution pass.

share|improve this answer
Is there a way to see the actual result? I have the feeling that my properties don't get released when they should... – cboe Feb 15 '12 at 1:10
Sorry, I don't know for sure. Perhaps you could ask the compiler to produce an assembly listing? – Greg Hewgill Feb 15 '12 at 3:03

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.