In iOS development you are using ARC almost all of the time. However, sometimes you have to disable ARC for Objective-C files.
Tag: Memory Handling
A Trick To Discover Retain Cycles
Although ARC does most of the memory handling work for you, your app can still suffer from so-called retain cycles. So it is very important to discover them.