メッセージングベースのiPhoneアプリで働いています。他の人からのメッセージを受信するためにビープ音を追加しました。を使用してビープ音を鳴らしていAVAudioPlayer
ます。私の問題は、ユーザーが私のアプリケーションからメッセージを受信した場合にバックグラウンドで他のアプリケーションからの曲を聞いたときにビープ音が鳴り、バックグラウンドの曲/オーディオが再開しないことです。
バックグラウンドソング/オーディオを一時停止してビープ音を再生したいのですが、アプリケーションからそのオーディオ/ソングを再開する必要があります。iOS開発で可能ですか?誰か助けてくれませんか?
編集:
これは私のサンプルコードです。
- (void)viewDidLoad
{
[super viewDidLoad];
self.title = @"Music";
self.navigationController.navigationBar.barStyle = UIBarStyleBlack;
NSString *urlString = [[NSBundle mainBundle] pathForResource:@"basicsound" ofType:@"wav"];
NSURL *audioURL = [[NSURL alloc] initWithString:urlString];
NSError *error;
audioPlayer = [[AVAudioPlayer alloc] initWithContentsOfURL:audioURL error:&error];
[audioPlayer setDelegate:self];
[audioPlayer prepareToPlay];
audioSession = [AVAudioSession sharedInstance];
[audioSession setActive:YES error:&error];
[audioSession setCategory:AVAudioSessionCategoryPlayback error:&error];
[audioPlayer play];
}
-(void)audioPlayerDidFinishPlaying:(AVAudioPlayer *)player successfully:(BOOL)flag
{
if (flag == YES)
{
NSLog(@"Audio Played successfully");
NSError *error;
[audioSession setActive:NO error:&error];
}
}