[categories] [index] [all (553)] [latest]
static MyClass *sharedInstance = nil; + (MyClass)sharedInstance { if (sharedInstance == nil) { sharedInstance = [[self alloc] init]; } return sharedInstance; }