こんにちは、ボタンにオーディオを追加する方法を知っている人はいますか?フレームワークを追加して、サウンドを配置するアクションを作成しましたが、ボタンを押してもサウンドが再生されませんか?
これが私がこれまでに行ったことです
-(void)buttonSound{
NSURL *url = [NSURL fileURLWithPath:[NSString stringWithFormat:@"%@/ButtonSound.mp3", [[NSBundle mainBundle] resourcePath]]];
NSError *error;
audioPlayer2 = [[AVAudioPlayer alloc] initWithContentsOfURL:url error:&error];
audioPlayer2.numberOfLoops = -1;
[audioPlayer2 play];
}
- (IBAction)backToMenu:(id)sender {
[self buttonSound];
[self.navigationController popViewControllerAnimated:YES];
}