//// IBTAudioRecorder.h// XFFruit//// Created by Xummer on 4/17/15.// Copyright (c) 2015 Xummer. All rights reserved.//#import "IBTObject.h"@interfaceIBTAudioRecorder:IBTObject@property(nonatomic,copy)void(^finishRecordingBlock)(IBTAudioRecorder*recorder,BOOLsuccess);@property(nonatomic,copy)void(^encodeErrorRecordingBlock)(IBTAudioRecorder*recorder,NSError*error);@property(nonatomic,copy)void(^receivedRecordingBlock)(IBTAudioRecorder*recorder,floatpeakPower,floataveragePower,floatcurrentTime);@property(nonatomic,readonly)BOOLm_bIsRecording;-(NSString*)recorderingPath;-(NSDictionary*)recordingSettings;-(BOOL)startRecord;-(BOOL)startRecordForDuration:(NSTimeInterval)duration;+(void)checkMicrophonePermissionAndRunAction:(void(^)(void))action;-(void)stopRecord;-(void)stopAndDeleteRecord;-(void)stopAndDeleteAllRecords;+(NSString*)recordFilePath;@end