У меня есть кнопка, но когда я нажимаю на нее, нет звука?Кто-нибудь знает в чем проблема?
-(IBAction)plus {
NSString *path = [[NSBundle mainBundle] pathForResource:@"beep-7" ofType:@"wav"];
AVAudioPlayer* theAudio=[[AVAudioPlayer alloc] initWithContentsOfURL:[NSURL fileURLWithPath:path] error:NULL];
theAudio.delegate = self;
[theAudio play];
}