I am seeing the following error in Xcode 7 build 6 debug console when running my app in the iOS 9 simulator:
2015-08-27 11:31:25.464 Reps[87841:2572333] 11:31:25
This works for me
var sound :SystemSoundID = 0
func Sound() {
let rightSound = NSURL(fileURLWithPath: NSBundle.mainBundle().pathForResource("sound", ofType: "wav")!) AudioServicesCreateSystemSoundID(rightSound, &sound) AudioServicesPlaySystemSound(self.sound); }