我想在收到特定通知时发出声音,无论是否打开静音模式。
我使用AVFoundation框架在开发模式下工作。因此,在AppDelegate didFinishLaunchingWithOptions
方法中,我初始化AVAudioSession
NSError *audioSessionError = nil;
[[AVAudioSession sharedInstance] setCategory: AVAudioSessionCategoryPlayback error:&audioSessionError];
[[AVAudioSession sharedInstance] setActive:YES error:&audioSessionError];
[[UIApplication sharedApplication] beginReceivingRemoteControlEvents];
if(audioSessionError) {
NSLog(@"[AppDelegate] audioSessionError: %@", audioSessionError);
}
我使用didReceiveRemoteNotification:(NSDictionary *)userInfo fetchCompletionHandler:(void (^)(UIBackgroundFetchResult result))completionHandler
方法检查应用是否在后台,通知是播放声音的通知。
if(application.applicationState == UIApplicationStateBackground) {
NSDictionary *aps = [userInfo objectForKey:@"aps"];
if([[aps valueForKey:@"category"] isEqualToString:@"alarm"]) {
NSString *path = [NSString stringWithFormat:@"%@/alarm.wav", [[NSBundle mainBundle] resourcePath]];
NSURL *soundUrl = [NSURL fileURLWithPath:path];
NSError *audioPlayerError = nil;
self.audioPlayer = [[AVAudioPlayer alloc] initWithContentsOfURL:soundUrl error:&audioPlayerError];
if(audioPlayerError) {
NSLog(@"[AppDelegate] audioPlayerError: %@", audioPlayerError);
} else {
NSLog(@"[AppDelegate] audioPlayer play call");
[self.audioPlayer play];
}
}
completionHandler(UIBackgroundFetchResultNewData);
} else {
completionHandler(UIBackgroundFetchResultNoData);
}
设置背景模式audio
和remote-notification
的info.plist中的键。
一切正常,所以我推送应用程序而不对TestFlight进行任何更改。当应用程序现在收到通知时,警报显示但是静音模式打开时声音没有播放。所以我再次在dev中测试它,我得到了相同的结果。收到通知并显示但未播放声音。
我不知道为什么它在将它推送到TestFlight之前在dev中工作,之后就是在生产或开发中工作。每次都会收到通知,只有声音不再播放。
有人知道这是怎么发生的吗?
答案 0 :(得分:1)
所以,我找到了解决问题的方法。
在初始化AppDelegate.m
的{{1}}文件中,我更改了
AVAudioSession
到
[[AVAudioSession sharedInstance] setCategory:AVAudioSessionCategoryPlayback error:&audioSessionError];
使用新选项[[AVAudioSession sharedInstance] setCategory:AVAudioSessionCategoryPlayback withOptions:AVAudioSessionCategoryOptionMixWithOthers error:&audioSessionError];
,它适用于开发和生产。