FazBrowse GitHub Viewer | Trending |
URL:
| Home
Tools: [Download Repo ZIP]   [Original HTTPS Page]

anthonycastelli/ACBlocks: Perform selectors with delays inline via blocks · GitHub

Latest commit

 

History

5 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 

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

2 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages


Back | FazBrowse Home | New Git URL