You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# These will help people to find your library, and whilst it
# can feel like a chore to fill in it's definitely to your advantage. The
# summary should be tweet-length, and the description more in depth.
#
s.name = "PDKTimer"
s.version = "0.0.5"
s.summary = "A simple swift GCD based Timer"
s.description = <<-DESC
A simple swift GCD based Timer
NSTimer is an Objective-C class that needs a @selector to call. As in swift, we don't have selectors, whe have to pass a String with the name of the function we want to be called
Wouldn't it be nice if whe could pass a closure to the timer?