NSTimer+AFSoundManager.h 508 B

12345678910111213141516171819
  1. //
  2. // NSTimer+AFSoundManager.h
  3. // AFSoundManager-Demo
  4. //
  5. // Created by Alvaro Franco on 10/02/15.
  6. // Copyright (c) 2015 AlvaroFranco. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface NSTimer (AFSoundManager)
  10. +(id)scheduledTimerWithTimeInterval:(NSTimeInterval)inTimeInterval block:(void (^)())inBlock repeats:(BOOL)inRepeats;
  11. +(id)timerWithTimeInterval:(NSTimeInterval)inTimeInterval block:(void (^)())inBlock repeats:(BOOL)inRepeats;
  12. -(void)pauseTimer;
  13. -(void)resumeTimer;
  14. @end