我正在尝试使用 Xcode for iPhone 在 Objective c 中播放 mp3 文件。
在 viewDidLoad 中:
NSURL *mySoundURL = [NSURL fileURLWithPath:[NSString stringWithFormat:@"%@/mySound.mp3", [[NSBundle mainBundle] resourcePath]]];
NSError *myError;
mySound = [[AVAudioPlayer alloc] fileURLWithPath:heartBeatURL error:&myError];
[mySound play];
我在这里找到了一个建议:使用 AVAudioPlayer 播放声音时出现问题?
但它对我不起作用,它只会产生更多问题。
当程序启动时,我在输出中得到这个并且程序崩溃:
体系结构 i386 的未定义符号:“_OBJC_CLASS_$_AVAudioPlayer”,引用自:SecondViewController.o 中的 objc-class-ref ld:未找到体系结构 i386 的符号 collect2:ld 返回 1 个退出状态
我在这里做错了什么?