Disable Automatic Reference Counting for Some Files

It is not very intuitive how to disable ARC on MULTIPLE files, for a while I was do it one by one until a figured out how to do that.

  1. Select desired files at Target/Build Phases/Compile Sources in Xcode (CMD+click or Shift+click)
  2. PRESS ENTER (double click will reset the selection, so it does’t work)
  3. Type -fno-objc-arc
  4. Press Enter or Done

Leave a Comment