Skip to content

Instantly share code, notes, and snippets.

@tsbob
tsbob / ExampleClass.m
Created July 26, 2012 07:03 — forked from lukeredpath/ExampleClass.m
Macro for creating your "shared instance" using GCD
@implementation MySharedThing
+ (id)sharedInstance
{
DEFINE_SHARED_INSTANCE_USING_BLOCK(^{
return [[self alloc] init];
});
}
@end