Created
February 28, 2014 11:01
-
-
Save gfx/9269202 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// abbrevation: dispatch_once | |
// description: GCD: dispatch_once | |
static dispatch_once_t onceToken; | |
dispatch_once(&onceToken, ^{ | |
$END$ | |
}); | |
// abbrevation: dispatch_after | |
// description: GCD: dispatch_after | |
double delayInSeconds = 2.0; | |
dispatch_time_t popTime = dispatch_time(DISPATCH_TIME_NOW, (int64_t)(delayInSeconds * NSEC_PER_SEC)); | |
dispatch_after(popTime, dispatch_get_main_queue(), ^(void){ | |
$END$ | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment