导入的库标题类不可用?

时间:2016-01-11 08:38:48

标签: ios objective-c xcode header-files

enter image description here

这是我的链接库 enter image description here

AVFoundation / AVFoundation存在,但我无法导入头文件,我不知道为什么?

2 个答案:

答案 0 :(得分:2)

您需要在Project Navigator中选择Project

选择Build Phases选项卡并展开Link Binary With Libraries。

enter image description here

enter image description here

您的导入语句应如下所示:导入错误的播放器代替AVPlayer您必须使用AVAudioPlayer

#import <AVFoundation/AVFoundation.h>
#import <AVFoundation/AVAudioPlayer.h>  // Add player 

答案 1 :(得分:1)

无需再次导入,此标头文件AVFoundation/AVFoundation.h已导入您可能需要的所有内容。

screenshot