Skip to content

Instantly share code, notes, and snippets.

@davidahouse
Created January 18, 2013 15:56
Show Gist options
  • Save davidahouse/4565554 to your computer and use it in GitHub Desktop.
Save davidahouse/4565554 to your computer and use it in GitHub Desktop.
dispatch_once to run a block of code only one time ever
static dispatch_once_t onceToken;
dispatch_once(&onceToken, ^{
// your code here
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment