I have a fair number of categories I use on standard objective-c classes (NSString, NSArray, NSDate, etc. etc.). I traditionally have only imported the headers for these categories in classes that actually use them. It’d be much easier for me to simply include them all in the prefix header and never have to worry again about importing them individually. But I wondering if there is any sort of performance hit from doing so? I’m not really concerned if it takes longer to compile, only if it impacts performance of the actual app.
I have a fair number of categories I use on standard objective-c classes (NSString,
Share
It might compile/link a bit longer but the application will run the same. Although it is not advisable from readability/maintainability point of view.