// // NSTimer+AFSoundManager.h // AFSoundManager-Demo // // Created by Alvaro Franco on 10/02/15. // Copyright (c) 2015 AlvaroFranco. All rights reserved. // #import @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