ビューを終了するときにジングルを開始し、このビューに戻るときにこのジングルを停止したい (wma)
IbAction を終了すると、次のコードが表示されます。
NSString *path = [NSString stringWithFormat:@"%@/%@",
[[NSBundle mainBundle] resourcePath],
@"file.wav"];
NSURL *filePath = [NSURL fileURLWithPath:path isDirectory:NO];
AudioServicesCreateSystemSoundID((CFURLRef)filePath, &soundID);
AudioServicesPlaySystemSound(soundID);
しかし、ビューに戻ると、viewWillAppearに書き込もうとします
AudioServicesRemoveSystemSoundCompletion(soundID);
AudioServicesDisposeSystemSoundID(soundID);
でもうまくいきません、助けてくれませんか?