I put my avfoundation into frameworks by adding existing frameworks and importing it into my viewcontroller like this #import <AVFoundation/AVAudioPlayer.h>

I then called it in my IBAction so when a button pressed it, it plays like so.

-(IBAction)playSound{ //play the cricket noise
    NSString *path = [[NSBundle mainBundle] pathForResource:@"Cricked_Sound" ofType:@"mp3"];
    audioPlayer =[[AVAudioPlayer alloc] initWithContentsOfURL:[NSURL fileURLWithPath:path] error:NULL];
    audioPlayer.delegate = self;
    [audioPlayer play];
}

But it crashes when ran, and it gives this warning.

/Programming/Obj-C Programs/iPhone/Awkward Cricket/Classes/Awkward_CricketViewController.m:42:0 /Programming/Obj-C Programs/iPhone/Awkward Cricket/Classes/Awkward_CricketViewController.m:42: warning: class 'Awkward_CricketViewController' does not implement the 'AVAudioPlayerDelegate' protocol
link|improve this question

feedback

closed as not a real question by Michael Petrotta, marc_s, Ken White, genesis, jtbandes Aug 19 '11 at 9:22

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.

1 Answer

As the error states, you haven't implemented the AVAudioPlayerDelegate in Awkward_CricketViewController.m Look up AVAudioPlayerDelegate in the docs.

link|improve this answer
feedback

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