In Objective-c when we using object of one class into another class by convention we should forward declare the class in .h file, i.e. @class classname;. And should import the header file in .m file, i.e. #import "header.h".
But if we import the header file in .h then we don't have to import it again in .m file .
So what is the reason behind this convention? Which is efficient way?
|
|
||||
|
|
You should favor forward declarations (
Forward declarations. Your builds, rebuilds, and indexing will be much faster if you do this correctly. |
|||||
|
|
You are correct that importing the header in the .h makes like easier (in the short run). The reason not to do this and import it in the implementation file (.m) is to prevent name pollution, where all the names in the imported header are available when someone imports your header. Instead, by importing your header only your functions/classes shuld be imported and the rest at the implementation Also, if you import the header in the .h, that means every code that imported your header will have to be recompiled when the 3rd-party header changes, even if nothing has changed in your header explicitly. Forward declaration avoids this problem and forces only those implementation (.m) files to be recompiled that actually make use of the 3rd-party header |
|||
|
|
|
Though import of files in .m makes it easier to get away with few lines of code but it is general thinking that importing may affect the load time and response time , yes it does affect and does not.Because according to documentation by apple :-
Thus Response and load times are affected for the first time only , But anyways forward referencing should be favoured to maintain coding standards and avoid overheads however small :). |
||||
|
|
|
this jst to say compiler we have a class with name xx if you use @class xx; becz u dnt need its properties/method rite now. and in the next case, you also need the property and methods cz you will have to access them. that's the issue if u use @class xx in ur .h file and don't import xx.h. then declaring an object of xx will not generate and error but accessing it's method will generate warning and accessing proprty generate an error |
|||||
|
|
So you |
|||
|
|
