How does memory management work in iOS? ARC is a compile time feature that Apple uses to automate memory management, well it takes care of most of the BASICS. ARC is short for Automatic Reference Count. The idea of ARC is simple. That means it will only frees up memory for objects when there are … Continue reading Retained Cycles, Yikes