Created
February 5, 2014 06:08
-
-
Save ka2n/8818167 to your computer and use it in GitHub Desktop.
いろいろテストが面倒なときによくやるSnippet
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)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