Downside to including headers in every source file (Objective-C)
- by Michael Waterfall
I'm currently including my AppDelegate.h and all of my category headers into every one of my source files using the MyApp_Prefix.pch prefix header, instead of manually #importing them only where they are used. The category methods and lots of compiler #define's in my app delegate are used in lots of places in my code.
Is there any down side to this? Is it just that compilation will take longer?