私が望むのは、アプリがバックグラウンドに入ったとき (ホームボタンが押されたとき) に音の再生を停止することです。私は 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);