AFSoundRecord.h 353 B

12345678910111213141516171819
  1. //
  2. // AFSoundRecord.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 AFSoundRecord : NSObject
  10. -(id)initWithFilePath:(NSString *)filePath;
  11. -(void)startRecording;
  12. -(void)saveRecording;
  13. -(void)cancelCurrentRecording;
  14. @end