Skip to content

Instantly share code, notes, and snippets.

@tamaki-shingo
Created November 13, 2012 11:02
Show Gist options
  • Save tamaki-shingo/4065221 to your computer and use it in GitHub Desktop.
Save tamaki-shingo/4065221 to your computer and use it in GitHub Desktop.
dispatch_once関数を使ったSingletonパターンの実装(dispatch_onceの入力でsnippet出る)
static dispatch_once_t onceToken;
dispatch_once(&onceToken, ^{
<#code to be executed once#>
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment