Skip to content

Instantly share code, notes, and snippets.

@ka2n
Created February 5, 2014 06:08
Show Gist options
  • Save ka2n/8818167 to your computer and use it in GitHub Desktop.
Save ka2n/8818167 to your computer and use it in GitHub Desktop.
いろいろテストが面倒なときによくやるSnippet
- (void)viewDidAppear:(BOOL)animated {
[super viewDidAppear:animated];
[NSObject cancelPreviousPerformRequestsWithTarget:[SomeClass sharedInstance]];
[[SomeClass sharedInstance] performSelector:@selector(someMethod:) withObject:someObject afterDelay:5.0];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment