I\'m new to objective-c and would like to know the best practice for importing some external headers that I use in my class.
Should I be storing the #import \"classB.h\"
It's recommended that you import other header files in your header file. That way you can use the class in both the header and the implementation files (because the implementation file (.m) imports its associated header file).
If you want to know when to import files and when to use forward-class declaration, you can go here. ;-)