Skip to content

Instantly share code, notes, and snippets.

@TheLarkInn
Created February 10, 2014 12:36
Show Gist options
  • Save TheLarkInn/8915116 to your computer and use it in GitHub Desktop.
Save TheLarkInn/8915116 to your computer and use it in GitHub Desktop.
Singleton/sorta/sharedInstance
+(WebViewPopup*)sharedWebViewPopup
{
static dispatch_once_t once;
static WebViewPopup* sharedWebViewPopup;
dispatch_once(&once, ^{
sharedWebViewPopup = [[WebViewPopup alloc] init];
});
return sharedWebViewPopup;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment