In Xcode, go to your target build settings (Command-Option-E tab) and uncheck Precompile Prefix Header (GCC_PRECOMPILE_PREFIX_HEADER). You can also remove the value of the Prefix Header parameter if you wish.
The prefix headers are compiled and stored in the cache, and then automatically included in each file at compile time. This can speed up compilation and allows you to include a file without adding an import statement to each file using it. They are not required, and in fact slow compilation whenever you change them.
ughoavgfhw Jan 18 '11 at 19:46 2011-01-18 19:46
source share