我有个问题。以下代码无法播放任何内容。并且根据编译器没有错误。我已经建立了必要的联系。事实上,而不是AVAudioPlayer
,如果我使用AudioServicesPlaySystemSound
,一切正常。如果有人可以帮助我,我会很高兴。因为我需要为我的项目使用 AVAudioPlayer,并且我已经尝试了我所知道的一切。
谢谢
.h 文件
#import <UIKit/UIKit.h>
#import <AVFoundation/AVFoundation.h>
#import <AudioToolbox/AudioToolbox.h>
@property(strong,nonatomic) AVAudioPlayer *audioPlayer;
- (IBAction)cal:(id)sender;
.m 文件
- (IBAction)cal:(id)sender {
NSString *path = [[NSBundle mainBundle] pathForResource:@"demo" ofType:@"mp3"];
NSURL *pathURL = [NSURL fileURLWithPath : path];
audioPlayer = [[AVAudioPlayer alloc]initWithContentsOfURL:pathURL error:nil];
[audioPlayer play];
}