I want to have a variable that I can access anywhere by importing a header file but I also want it to be static in the sense that there is only one of them created. In my .
Declare it extern BOOL in your header file. Files that #import your header don't know or care if the external symbol is static or not.
extern BOOL
#import