This will be my last stupid question as I am done with the project and I was wondering. It has been quite some time since I have crossed over header files.
For example, if I have appControl.m and appControl.h and the header files has 30 variables I plan on using in, lets say 3 other .m files, would i make those variables global?
IE:
or how would I go about that? a simple #import "appControl.h" doesnt work.
Thank you in advance.
For example, if I have appControl.m and appControl.h and the header files has 30 variables I plan on using in, lets say 3 other .m files, would i make those variables global?
IE:
Code:
+(NSString *)test;
or how would I go about that? a simple #import "appControl.h" doesnt work.
Thank you in advance.