Skip to content

Instantly share code, notes, and snippets.

@taka328w
Created April 28, 2012 14:24
Show Gist options
  • Save taka328w/2519425 to your computer and use it in GitHub Desktop.
Save taka328w/2519425 to your computer and use it in GitHub Desktop.
バックグランド処理(Blocks)
#import "NSObject+Extensions.h"
- (void)doSomething {
[self performBlockInBackground:^{
NSLog(@"バックグラウンド処理でごにょごにょ");
}];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment