XCode“找不到文件”错误

时间:2012-01-29 04:13:34

标签: ios xcode

我是Xcode的新手,我正在开发SoundBoard应用程序。在我的viewcontroller.m文件中,我输入#import“(小于)AVFoundation / AVAudioPlayer.h”,只是为了得到错误“File not Found”。我确实添加了AVFoundation.framework文件,所以我不明白为什么我会收到此错误。

帮助?

2 个答案:

答案 0 :(得分:0)

您的import语句应如下所示

#import <AVFoundation/AVFoundation.h>

如果您已经这样声明,那么您可能会对添加AVFoundation库的方式有疑问。在Xcode 4中,您需要在Project Navigator中选择Project

选择Build Phases选项卡并展开Link Binary With Libraries。 enter image description here

单击+按钮并添加AVFoundation。

希望这会纠正您的问题,否则会出现标题搜索路径问题。

答案 1 :(得分:0)

添加框架时,请确保不要将它们复制到项目中,只需在原始位置使用它们即可。要找出这些框架所在的位置,请右键单击框架并选择“在查找器中显示”。

这对我有用。