Skip to content

Instantly share code, notes, and snippets.

@koromiko
Created December 11, 2013 09:38
Show Gist options
  • Save koromiko/7907584 to your computer and use it in GitHub Desktop.
Save koromiko/7907584 to your computer and use it in GitHub Desktop.
singleton defination
+ (SSNetworkDataSource*)sharedDataSource{
static dispatch_once_t pred;
static SSNetworkDataSource *obj = nil;
dispatch_once(&pred, ^{
obj = [[SSNetworkDataSource alloc]init];
});
return obj;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment