Skip to content

Instantly share code, notes, and snippets.

@taka328w
Created April 28, 2012 14:13
Show Gist options
  • Save taka328w/2519366 to your computer and use it in GitHub Desktop.
Save taka328w/2519366 to your computer and use it in GitHub Desktop.
バックグランド処理(Blocksなし)
- (void)doSomething {
[self performSelectorInBackground:@selector(doSomethingInBackground) withObject:nil];
}
- (void)doSomethingInBackground {
NSLog(@"バックグラウンド処理でごにょごにょ");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment