1
vote
Global variables as aliases for singletons?
The main purpose of using a method call to get a singleton is so the singleton can be lazily prepared. For example:
static State sharedStateInstance;
@implementation State
+ (id)sh …
