所以我想做的是创建并播放一个声音,当我按下一个按钮,就会播放,我知道如何在 Objective-C 中完成,但有人知道如何在 Swift 中完成吗?
对于 Objective-C 来说是这样的:
NSURL *soundURL = [NSURL fileURLWithPath:[[NSBundle mainBundle] pathForResource:@"mysoundname" ofType:@"wav"]];
AudioServicesCreateSystemSoundID((__bridge CFURLRef)soundURL, &mySound);
然后我会这样演奏:
AudioServicesPlaySystemSound(Explosion);
有人知道我是怎么做到的吗?