Xcode 6 - 按下按钮播放声音

Xcode 6 - Press button to play sound

寻求一些帮助来尝试让我的按钮播放声音。我查阅了 50 多个教程,但所有教程都已过时并且不适用于新的 Xcode。谁有好的学习资源? Objective-C 相当陌生。我查看了音频框架的 Apple 文档,我的脑细胞自杀了。任何正确方向的帮助或指示将不胜感激。

viewController.h

#import <AudioToolbox/AudioToolbox.h>

#import <AVFoundation/AVFoundation.h>

@interface viewController : UIViewController
@property (strong, nonatomic) AVAudioPlayer *player;
@end

viewController.m

-(void)yourButtonDidTap {
    NSString *soundFilePath = [NSString stringWithFormat:@"%@/%@.mp3",
                               [[NSBundle mainBundle] resourcePath], soundName];
    NSURL *soundFileURL = [NSURL fileURLWithPath:soundFilePath];

    _player = [[AVAudioPlayer alloc] initWithContentsOfURL:soundFileURL
                                                                   error:nil];
    _player.numberOfLoops = 0; 

    [_player play];
}