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?

link|improve this question

79% accept rate
feedback

3 Answers

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.

link|improve this answer
What would you include in that Common.h? – hgpc May 17 '10 at 9:34
1  
Nothing; I'd only put the various #defines, etc... in it. – bbum May 19 '10 at 22:40
feedback
up vote 4 down vote accepted

A detailed blog post on the subject:

http://www.cimgf.com/2010/05/02/my-current-prefix-pch-file/

link|improve this answer
feedback

I agree with bbum. My take on the PCH file is that it should contain pretty much only #include or #import statements. So if you have a bunch of helpful, high-level macros, define them in something like Common.h and #import that file, as bbum suggested.

I usually go a step further and use the PCH file to #import a file called XXCategories.h (where XX is the class naming prefix convention you use) that contains #imports for all my UIKit and Foundation class categories: NSString+XXAdditions.h, UIColor+XXAdditons.h, etc.

link|improve this answer
I'm just curious. In the .PCH file ,what's the difference between importing a Common.h which has various #import and just importing those #import directly? Wouldn't those be the same?, or does it affect any performance? – Hlung Apr 4 at 9:57
To my knowledge, there's no real difference. It's more of a best practice, I guess. Rather than shoving a bunch of macros and other things into your PCH file, it should only be for #import and #include. – LucasTizma Apr 4 at 17:54
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.