Last active
October 13, 2015 09:22
-
-
Save B0bcat/5d6519590a0557d20fb0 to your computer and use it in GitHub Desktop.
fjoidf
This file contains hidden or 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
- (void)doSomething { | |
NSOperationQueue *queue = [[NSOperationQueue alloc] init]; | |
[queue addOperationWithBlock:^{ | |
// load data from disk | |
NSLog(@"done"); | |
}]; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment