Skip to content

anthonycastelli/ACBlocks

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 

Repository files navigation

ACBlocks

Perform selectors with delays inline via blocks

Turns

[self performSelector:@selector(action) withObject:nil afterDelay:2];

- (void)action {
	// DO something
}

into a a block based call

[self performBlock:^{
        NSLog(@"Logging…");
    } afterDelay:2];

About

Perform selectors with delays inline via blocks

Resources

Stars

Watchers

Forks

Packages

No packages published