I'm storing some default initializer values for my class as static class variables. Like this:
// List.h
static NSString *DEFAULT_LIST_NAME = @"Not Set";
static BOOL DEFAULT_RECURSION = NO;
I also need a static variable of type NSArray *
set to an empty array. How can this be achieved? Currently I get the error:
Initializer element is not a compile-time constant