我想要的是我的应用程序在进入后台时(按下主页按钮时)应该停止播放声音。我在 appDelegate.m 中做了这个,但它说use of undeclared identifier 'soundID'
- (void)applicationDidEnterBackground:(UIApplication *)application
{
AudioServicesDisposeSystemSoundID(soundID)
}
我已将我的 VC 导入到委托中,并将其soundID
作为属性公开。我哪里错了?请帮忙。
NSString *path = [[NSBundle mainBundle] pathForResource:@"something" ofType:@"wav"];
NSURL *url = [NSURL fileURLWithPath:path];
AudioServicesCreateSystemSoundID((CFURLRef)url, &soundID);
AudioServicesPlaySystemSound(soundID);