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
{{ message }}
This repository has been archived by the owner on Jun 2, 2018. It is now read-only.
All right I want to fix this myself and request a pull but I've got a question.
BKTimerBlock currently receives an NSTimerInterval as parameter - will it be OK to break its declaration and make it receive an NSTimer instance instead? It will break existing usages...
The interval can be accessed using the NSTimer tough.
Why shouldn't I be able to do this:
[NSTimer timerWithTimeInterval:1 block:^(NSTimeInterval time, NSTimer *timer) {
if (YES) {
[timer invalidate];
}
} repeats:YES];
?
The text was updated successfully, but these errors were encountered: