Skip to content

Instantly share code, notes, and snippets.

@mundstein
Created April 22, 2012 19:19
Show Gist options
  • Save mundstein/2466283 to your computer and use it in GitHub Desktop.
Save mundstein/2466283 to your computer and use it in GitHub Desktop.
Extend NSObject to perform block after delay
@implementation NSObject (PerformBlockAfterDelay)
- (void)performBlock:(void (^)(void))block
afterDelay:(NSTimeInterval)delay
{
block = [[block copy] autorelease];
[self performSelector:@selector(fireBlockAfterDelay:)
withObject:block
afterDelay:delay];
}
- (void)fireBlockAfterDelay:(void (^)(void))block {
block();
}
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment