本文介绍了找不到'CoreVideo / CoreVideo.h'文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

当我在设备上运行iOS应用时,会出现此错误

When I run a iOS App on my device , This error will appear

找不到'CoreVideo / CoreVideo.h'文件

'CoreVideo/CoreVideo.h' file not found

无论是什么项目,即使创建一个新项目,一旦在我的设备上运行应用程序,这个错误就会出现

not matter what project even though create a new project , once run the app on my device this error will appear

但模拟器会没问题〜

我找不到一些框架

目标 - 构建阶段 - 链接二进制与Librares - 添加

Target--Build Phase--Link Binary With Librares--add

像AVFoundation.framework AudioToolBox.framework

like AVFoundation.framework AudioToolBox.framework

我应该在我的mac上重新安装xcode~

Should i reinstall the xcode on my mac~???

推荐答案

确定您已将CoreVideo框架添加到项目中。

Make certain you've added the CoreVideo framework to your project.

以下是我在自己项目中的表现:

Here's how I do it in my own projects:

如果您需要帮助找出它的位置(它隐藏在XCode应用程序包本身中),请告诉我和我可以告诉你。

If you need help figuring out where it is (it's hidden within the XCode app package itself), let me know and I can show you.

此外,在项目的文件检查器中检查CoreVideo的目标成员资格。它看起来像这样:

Also, make certain "Target Membership" is checked for CoreVideo in the File Inspector of your project. It looks like this:

这篇关于找不到'CoreVideo / CoreVideo.h'文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

06-07 21:11