I saw this and answers in stackO, but didn't find how to exclude folders.
I have 3 folders with a lot of .h , .m and .mm and i need to exclude them temporary, but not to remove references. How can i do that?
From looking at the post you link to. Here is how you do it:
Go to Build Settings.
Press the plus button and select "Add User-Defined settings"
EXCLUDED_SOURCE_FILE_NAMES
.<Path>/FolderToIgnore/*
. The asterisk denotes all the file in the folder.That should do it.
Note: Make sure you add this to the right target.