Is it OK to remove Prefix.pch file from the Xcode project?
问题 The Xcode project generates Prefix.pch file automatically. When I deleted this file and tried to build, I got build error saying ' * _Prefix.pch' file is missing. Is Prefix.pch file is a must for compiling with Xcode? How can I build without the Prefix.pch file? 回答1: In Xcode, go to your target's build settings (Command-Option-E, build tab) and uncheck Precompile Prefix Header (GCC_PRECOMPILE_PREFIX_HEADER). You can also remove the value of the Prefix Header setting if you wish. Prefix