我使用此代码播放简短的声音效果。当用户单击键盘的返回按钮时会发生这种情况,这会使键盘单击声音效果比平时响亮。是否可以在不影响系统声音的情况下以一定的音量播放效果?
- (void)playCorrectAnswerSound {
NSString *path = [[NSBundle mainBundle] pathForResource:@"correct" ofType:@"mp3"];
NSURL *urlPath = [NSURL fileURLWithPath:path];
self.player = [[AVAudioPlayer alloc] initWithContentsOfURL:urlPath error:nil];
self.player.volume = 0.04;
[self.player prepareToPlay];
[self.player play];
}