0

我有个问题。以下代码无法播放任何内容。并且根据编译器没有错误。我已经建立了必要的联系。事实上,而不是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];

}
4

1 回答 1

0

好的,经过数小时的尝试,我设法解决了这个问题。很难相信,但我所做的是将 mp3 文件重命名(不转换)为 m4a,并将源中的相应代码更改为 m4a。就是这样。 .

于 2013-06-19T07:34:43.460 回答