バックグラウンドミュージックを一時停止せずにiOSでサウンドを再生するにはどうすればよいですか?
私はこれを持っています:
NSString *soundPath = [[NSBundle mainBundle] pathForResource:@"alert" ofType:@"wav"];
NSURL *url = [NSURL URLWithString:soundPath];
[[AVAudioSession sharedInstance] setCategory:AVAudioSessionCategoryAmbient error:nil];
AVAudioPlayer *audioPlayer = [[AVAudioPlayer alloc] initWithContentsOfURL: url error:nil];
audioPlayer.numberOfLoops = 0;
[audioPlayer play];
それでも、バックグラウンドミュージックは停止されます。私は何が欠けていますか?
私もこれを試しましたが、役に立ちませんでした:
- (void)alarm:(CDVInvokedUrlCommand *)command {
[self setupAudioSession];
NSString *soundPath = [[NSBundle mainBundle] pathForResource:@"alert" ofType:@"wav"];
NSURL *url = [NSURL URLWithString:soundPath];
AVPlayer *audioPlayer = [[AVPlayer alloc] initWithURL: url];
[audioPlayer play];
}
- (void)setupAudioSession {
AudioSessionInitialize(NULL,NULL,NULL,NULL);
OSStatus activationResult = 0;
activationResult = AudioSessionSetActive(true);
UInt32 sessionCategory = kAudioSessionCategory_MediaPlayback;
AudioSessionSetProperty
(
kAudioSessionProperty_AudioCategory,
sizeof(sessionCategory),
&sessionCategory
);
OSStatus propertySetError = 0;
UInt32 allowMixing = true;
propertySetError = AudioSessionSetProperty
(
kAudioSessionProperty_OverrideCategoryMixWithOthers,
sizeof(allowMixing),
&allowMixing
);
[[AVAudioSession sharedInstance] setCategory:AVAudioSessionCategoryAmbient error:nil];
}