Enable or Disable ARC on single file in a Project
ARC (Automatic Reference Counting) was introduced in iOS 5.0 SDK. Although there is no difference in the execution of an ARC program and a well written MRC (Manual Reference Counting), it is good to use ARC if it is annoying for you to manually keep track of reference counting of objects that you create. On…