For some reason, XCode has decided to start copying a huge Prefix.pch.gch file into my application\'s resources folder when building. This file is not in the Copy Bundle Re
I solved this problem in a different way. Firstly I like to make use of the prefix file so I have lots of includes for standard logging, colours etc.
For every include to the prefix file ensure that each include is only processed once! This can be done by putting:
#ifndef ____
#define ____
< your original header file here >
#endif