+ (ClassType*)sharedInstance{

      static ClassType *instance;

static dispatch_once_t predicate;

dispatch_once(&predicate, ^{

instance = [[ClassType alloc] init];

});

return instance;

}




Posted by tenn
,