无法使用CocoaPods

时间:2016-04-23 16:45:30

标签: cocoapods

我正在进行在线Objective-C课程,我遇到了以下问题: 我好像通过终端安装了CocoaPods。

当我去安装CocoaPods时,终端显示的文本显示:“已成功安装cocoapods-0.39.0解析cocoapods-0.39.0 1 gem的安装文档”

然后我继续关注这个例子:

1)我在Xcode中输入了:pod'SAMGradientView'到'podfile'。

2)重新打开终端。

3)然后我在终端输入“cd”,然后将Example Xcode Project文件拖到终端。然后我按下了回车,什么都没发生。

2 个答案:

答案 0 :(得分:1)

编辑podfile后,您需要通过发出命令" pod install"来安装pod。在终端。

link中提供了安装cocoapod并与xcode项目集成的详细说明。

答案 1 :(得分:0)

请按照以下步骤将cocoa-pod安装到您的项目中。

//if cocoa-pods is not installed in your system else skip first step

Step 1.$ sudo gem install cocoapods

Step 2.change directory to xcode project in terminal

Step 3.$ pod init

Step 4.$ open -a Xcode Podfile

Step 5.insert your pod library( pod 'SAMGradientView') into opened pod file and save this file.

Step 7. $pod install (if pod installation first time in your project)

or $pod update (to update existing pods)