xcode 5无法将gpuimage项目添加到我的xcode项目中

时间:2014-04-02 16:06:17

标签: objective-c xcode import gpuimage

我的问题是,我将GPUImage.xcodeproj文件添加到我的xcode项目中。 但如果我这样做,则不会出现此窗口:

enter image description here

所以我无法将GPUImage Target Dependencie添加到我的项目中。我做错了什么?

enter image description here

1 个答案:

答案 0 :(得分:4)

您可以使用cocoapods来管理您的依赖项,它易于使用和更新。

恕我直言,它也使你的项目更清洁。

如果您仍想手动安装,请确保已按照此“教程”进行操作:

https://github.com/BradLarson/GPUImage#adding-the-framework-to-your-ios-project

否则,使用cocoaPods! :

1-打开terminal并使用gem安装cocoapod:

  

$> sudo gem install cocoapods

2-进入你的项目文件夹:

  

$> pod init

     

//它将创建一个Podfile

3-编辑Pod文件并复制过去:

platform :ios, "7.0"

pod 'GPUImage', '~> 0.1.0'

// save and close the file

4-安装依赖项:

  

$> pod install

     

//成功安装后输入:

     

$>打开projectName.xcworkspace /

     

//它将打开您的xcode项目,其中已经设置了依赖项

5-在ViewController中导入GPUImage

6-享受!