Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

My delegate methods audioRecorderDidFinishRecording and audioPlayerDidFinishPlaying are not being called. Those methods should trigger a 'stopanimation` method that stops an animation after recording is finished.

I have placed a call call to the stopanimation method at the end of audioPlayerDidFinishPlaying.

Here is the relevant code where the delegate is assigned:

   VoiceEditor.h

    @interface VoiceEditor : UIViewController <UITextFieldDelegate, AVAudioRecorderDelegate, AVAudioPlayerDelegate>{    
}

VoiceEditor.m

- (void)record{
    recorder = [[AVAudioRecorder alloc] initWithURL:[NSURL fileURLWithPath:pathString] settings:recordSettings error:nil];
    [recorder setDelegate:self];
    [recorder record];
    recording = YES;        
    [pauseButton setImage:[UIImage imageNamed:@"stop.png"] forState:UIControlStateNormal];
    [pauseButton setEnabled:YES];
    [playButton setEnabled:NO];
    [recordButton setEnabled:NO];  
    [self beginAnimation];
}

- (void)play{              
    player = [[AVAudioPlayer alloc] initWithContentsOfURL:[NSURL fileURLWithPath:pathString] error:nil];
    double seconds=[player duration];
    NSLog(@"%f",seconds);
    [player setDelegate:self];
    [player play];
    playing = YES;              
    [recordButton setEnabled:NO];
    [pauseButton setEnabled:YES];
    [playButton setEnabled:NO];     
    [self beginAnimation];
}
share|improve this question

3 Answers

up vote 2 down vote accepted

Your code setting the delegate looks fine.

Are you assuming that the delegate methods are not called only because the animation does not stop or have you tried to log/breakpoint the methods directly? If you haven't tested directly do so before working on the assumption that they aren't.

If you have confirmed they are not being called the, most likely, your animation is tying up the self object such that it cannot respond to the AV delegate methods.

Comment out the animation and just put a log in the AV delegate methods to see if they are called.

share|improve this answer
i have check through break point and it does not stop at that.but when i run it on device it worked.i mean delegate methods called – Heena Dave Jul 6 '11 at 5:16
Thanks !!...You are right.. – Brijesh Vadukia Mar 2 at 7:58

Try to pass the error parameter to be sure your recorder object is being created properly.

NSError *err=nil;
recorder = [[AVAudioRecorder alloc] initWithURL:[NSURL fileURLWithPath:pathString] settings:recordSettings error:&err];
if(!recorder){
    NSLog(@"recorder: %@ %d %@", [err domain], [err code], [[err userInfo] description]);
}
share|improve this answer

Here is the Good example of Audio recording.

share|improve this answer
i have this methods in my code but the problem is,those methods are not being called – Heena Dave Jul 5 '11 at 8:29
now you have a example. compare the code. – Rakesh Bhatt Jul 5 '11 at 8:33
3  
-1 These copy and paste answers are not very helpful especially when they don't directly address the specific question. The question was why was a specific piece of code not working and not, "does anyone know of some good examples of general Audio recording?" – TechZen Jul 5 '11 at 16:50
whats d wrong. i just helped and you give me -1... – Rakesh Bhatt Jul 6 '11 at 5:30

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.