I’m aware that you can set the compiler flag -fno-objc-arc to disable Automatic Reference Counting (ARC) for each file in Compile Sources in XCODE but how can I do this for an entire group of files without having to do each file at a time?
The reason I ask is that I’ve added a large library to my application and I need to set the -fno-objc-arc compiler flag for over 100 files.
Goto
Build Phases -> Compile sourcesselect multiple files holding command ⌘ and press enter then add the value-fno-objc-arcIt will reflect for all the selected files.