The Question : 1349 people think this question is useful I am using ARC successfully in my project. However, I have encountered a few files (e.g., in unit tests and mock objects) where the rules of ARC are a little more fragile right now. I recall hearing that there was a way to disable ARC
The Question : 554 people think this question is useful I am developing exclusively for iOS 5 using ARC. Should IBOutlets to UIViews (and subclasses) be strong or weak? The following: Would get rid of all of this: Are there any problems doing this? The templates are using strong as are the automatically generated properties
The Question : 1268 people think this question is useful I’m getting the following warning by the ARC compiler: Here’s what I’m doing: Why do I get this warning? I understand the compiler can’t check if the selector exists or not, but why would that cause a leak? And how can I change my code