aboutsummaryrefslogtreecommitdiff
path: root/VKPC/NSTimer+Blocks.h
diff options
context:
space:
mode:
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