AVAudioPlayer音頻播放

//  ViewController.h

@property (nonatomic) AVAudioPlayer *player;

@property (weak, nonatomic) IBOutlet UIButton *playButton;



//  ViewController.m

- (IBAction)playButton:(UIButton *)sender {

    [_player play];

}


- (void)viewDidLoad {

    [super viewDidLoad];

    // Do any additional setup after loading the view, typically from a nib.

    NSString * filePath = [[NSBundle mainBundle] pathForResource:@"1739" ofType:@"mp3"];

    NSURL * url = [NSURL fileURLWithPath:filePath];

    _player = [[AVAudioPlayer alloc] initWithContentsOfURL:url error:NULL];

    [_player prepareToPlay];

}


發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章