AVAudioRecorderDelegate 的代表没有调用

Delegates Of AVAudioRecorderDelegate are Not Calling

实际上我想录制音频并存储到文档中,我找到了文件路径甚至附加了音频文件,但我想将实际音频附加到该路径,它不起作用,我将代码写在 DidFinish 像这样。

    - (void)viewDidLoad {
        [super viewDidLoad];
        self.navigationItem.title = @"Recording Area";
        [btnRecord setBackgroundImage:[UIImage imageNamed:@"Record.png"] forState:UIControlStateNormal];

        session = [AVAudioSession sharedInstance];
        [session setCategory:AVAudioSessionCategoryPlayAndRecord error:nil];

        audioRecorder.delegate = self;


        NSDate *today = [[NSDate alloc]init];
        NSDateFormatter *dateFormatter = [[NSDateFormatter alloc]init];
        [dateFormatter setDateFormat:@"hh:mm:ss"];

        NSString *currentTime = [dateFormatter stringFromDate:today];

        NSString *outputPath = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,NSUserDomainMask, YES) objectAtIndex:0];

        outputPath = [outputPath stringByAppendingString:[NSString stringWithFormat:@"%@.m4a",currentTime]];

        NSMutableDictionary *recordDictionary = [[NSMutableDictionary alloc] init];

        [recordDictionary setValue:[NSNumber numberWithInt:kAudioFormatMPEG4AAC] forKey:AVFormatIDKey];
        [recordDictionary setValue:[NSNumber numberWithFloat:44100.0] forKey:AVSampleRateKey];
        [recordDictionary setValue:[NSNumber numberWithInt:2] forKey:AVNumberOfChannelsKey];


        audioRecorder = [[AVAudioRecorder alloc]initWithURL:[NSURL fileURLWithPath:outputPath] settings:recordDictionary error:nil];

        audioRecorder.meteringEnabled = YES;
        [audioRecorder prepareToRecord];

    }

and For Recording Audio

    -(IBAction)onClickRecord:(id)sender
{

    if(player.playing)
    {
        [player stop];
    }


    if([[btnRecord backgroundImageForState:UIControlStateNormal]isEqual:[UIImage imageNamed:@"Record.png"]])
    {

        if (!audioRecorder.recording)

        {
            AVAudioSession *session = [AVAudioSession sharedInstance];
            [session setActive:YES error:nil];


            [audioRecorder record];
           [btnRecord setBackgroundImage:[UIImage imageNamed:@"Pause.png"] forState:UIControlStateNormal];
        }



    }

    else if([[btnRecord backgroundImageForState:UIControlStateNormal]isEqual:[UIImage imageNamed:@"Pause.png"]])
    {
        [audioRecorder pause];

        [btnRecord setBackgroundImage:[UIImage imageNamed:@"Record.png"] forState:UIControlStateNormal];
    }




}

用于保存录制的音频

    -(IBAction)onClickSave:(id)sender
{
    [audioRecorder stop];
    AVAudioSession *audioSession = [AVAudioSession sharedInstance];
    [audioSession setActive:NO error:nil];


}

最后,我的代码无法正常工作的委托实际上是我无法调用此方法

 - (void)audioRecorderDidFinishRecording:(AVAudioRecorder *)recorder successfully:(BOOL)flag
{


    [btnRecord setBackgroundImage:[UIImage imageNamed:@"Record.png"] forState:UIControlStateNormal];
    [arrayFiles addObject:recorder.url.absoluteString];
    NSLog(@"Array %@",arrayFiles);

}

所以请指出我哪里错了。

您在初始化 AVAudioRecorder

之前设置委托

移动 audioRecorder.delegate = self; 初始化后

audioRecorder = [[AVAudioRecorder alloc]initWithURL:[NSURL fileURLWithPath:outputPath] settings:recordDictionary error:nil];
audioRecorder.meteringEnabled = YES;
audioRecorder.delegate = self;

[audioRecorder prepareToRecord];