如何停止来自另一个应用程序的背景音频?
我努力了
NSError *error;
[[AVAudioSession sharedInstance] setCategory:AVAudioSessionCategoryPlayback error:nil];
[[AVAudioSession sharedInstance] setActive:YES error:&error];
在- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)options
但- (void)applicationWillEnterForeground:(UIApplication *) application
没有效果。
我的应用程序使用 The Amazing Audio Engine 播放音频,但本身不需要背景音频,因此我不想将“音频”键添加到 info.plist 中的“所需设备功能”
还有其他解决方案吗?