Skip to content

ivanzoid/GCDTimer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

GCDTimer

Version License Platform

About

GCDTimer is implementation of NSTimer-like class with API close to original, but done on top of Apple's GCD (Grand Central Dispatch).

Usage

You use GCDTimer almost the same as you use NSTimer:

GCDTimer *timer;

...

timer = [GCDTimer scheduledTimerWithTimeInterval:1.0 repeats:YES block:^{
	// Your repeated action here.
}];

See demo for more details (you may quickly see demo by using conventient pod try command, i.e. pod try GCDTimer)

Installation

GCDTimer is available through CocoaPods. To install it, simply add the following line to your Podfile:

pod "GCDTimer"

Author

Ivan Zezyulya, GCDTimer@zoid.cc

License

GCDTimer is available under the MIT license. See the LICENSE file for more info.

About

Equivalent or NSTimer but using GCD queues

Resources

License

Stars

Watchers

Forks

Packages

No packages published