I have seen many developers that add various convenience macros to the Prefix.pch of their iPhone project.
What do (or don't) you recommend adding to the iPhone Prefix.pch file? What does your Prefix.pch look like?
|
I have seen many developers that add various convenience macros to the Prefix.pch of their iPhone project. What do (or don't) you recommend adding to the iPhone Prefix.pch file? What does your Prefix.pch look like?
| ||||
|
feedback
|
|
Ewww... don't put macros in the PCH file. A PCH file is, by definition, a project specific precompiled header. It really shouldn't be used beyond the context of the project and it really shouldn't contain anything but #includes/#imports. If you have some Macros and such that you want to share between headers, then stick 'em in a header file of their own -- Common.h or whatever -- and #include that at the beginning of the pch. | |||||||
feedback
|
|
A detailed blog post on the subject: | |||
|
feedback
|
|
I agree with bbum. My take on the PCH file is that it should contain pretty much only I usually go a step further and use the PCH file to | |||||
feedback
|