One of the recent improvements introduced with Xcode 4′s new LLVM Compiler 3.0 is Automatic Reference Counting (ARC). ARC is a compiler feature that will automatically manage the traditional iOS retain/release memory management model. When you enable ARC for a project, you simply do not ever call retain or release - the compiler figures it …