当我从一个视图退出时,我开始播放叮当声,当我返回这个视图时,我想停止这个叮当声(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);
但它不起作用,你能帮帮我吗?