| 12345678910111213141516171819 |
- //
- // NSTimer+AFSoundManager.h
- // AFSoundManager-Demo
- //
- // Created by Alvaro Franco on 10/02/15.
- // Copyright (c) 2015 AlvaroFranco. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface NSTimer (AFSoundManager)
- +(id)scheduledTimerWithTimeInterval:(NSTimeInterval)inTimeInterval block:(void (^)())inBlock repeats:(BOOL)inRepeats;
- +(id)timerWithTimeInterval:(NSTimeInterval)inTimeInterval block:(void (^)())inBlock repeats:(BOOL)inRepeats;
- -(void)pauseTimer;
- -(void)resumeTimer;
- @end
|