Então o que eu quero fazer é criar e tocar um som em swift que tocará quando eu pressionar um botão, eu sei como fazer em Objective-C, mas alguém sabe em Swift?
Seria assim para Objective-C:
NSURL *soundURL = [NSURL fileURLWithPath:[[NSBundle mainBundle] pathForResource:@"mysoundname" ofType:@"wav"]];
AudioServicesCreateSystemSoundID((__bridge CFURLRef)soundURL, &mySound);
E então, para jogar, eu faria:
AudioServicesPlaySystemSound(Explosion);
Alguém sabe como eu poderia fazer isso?
var url :NSURL = NSURL(fileURLWithPath: NSBundle.mainBundle().pathForResource("mysoundname", ofType: "wav"))