summaryrefslogtreecommitdiff
path: root/VKPC/NSTimer+Blocks.h
diff options
context:
space:
mode:
authorch1p <me@ch1p.com>2015-08-14 01:04:22 +0300
committerch1p <me@ch1p.com>2015-08-14 01:04:22 +0300
commit8c1a7423a0e526f2896d17be768abeccbeb77ad7 (patch)
tree67ad777e65ff6b0cca64a27ab5bb8455b575ffae /VKPC/NSTimer+Blocks.h
initial
Diffstat (limited to 'VKPC/NSTimer+Blocks.h')
-rw-r--r--VKPC/NSTimer+Blocks.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/VKPC/NSTimer+Blocks.h b/VKPC/NSTimer+Blocks.h
new file mode 100644
index 0000000..3e481b3
--- /dev/null
+++ b/VKPC/NSTimer+Blocks.h
@@ -0,0 +1,13 @@
+//
+// NSTimer+Blocks.h
+//
+// Created by Jiva DeVoe on 1/14/11.
+// Copyright 2011 Random Ideas, LLC. All rights reserved.
+//
+
+#import <Foundation/Foundation.h>
+
+@interface NSTimer (Blocks)
++(id)scheduledTimerWithTimeInterval:(NSTimeInterval)inTimeInterval block:(void (^)())inBlock repeats:(BOOL)inRepeats;
++(id)timerWithTimeInterval:(NSTimeInterval)inTimeInterval block:(void (^)())inBlock repeats:(BOOL)inRepeats;
+@end