Skip to content

Instantly share code, notes, and snippets.

@bazscott
bazscott / Code Snippets for Dash
Created September 18, 2013 19:36
A collection of the code snippets I use in Dash
// ====================================================
// SINGLETON
// ====================================================
+ (__class__ *)__accessor__ {
static dispatch_once_t pred;
static __class__ *__singleton__ = nil;
dispatch_once(&pred, ^{
__singleton__ = [[__class__ alloc] init];
});