运行包含Cocoapods的Github iOS项目

时间:2017-04-23 15:47:59

标签: ios swift github cocoapods

我对iOS开发很新。假设我想使用Github中使用Cocoapods的UI元素。

喜欢这个:

Whisper by hyperslo

从Github下载zip文件后:

enter image description here

有人可以提供

的分步指南
  1. 运行演示项目
  2. 将UI元素集成到我自己的项目中
  3. 谢谢!

1 个答案:

答案 0 :(得分:2)

运行演示 有点棘手。显然你必须先做一个pod install,然后打开工作区。

确保安装了可可豆荚。有关如何安装,请转到https://cocoapods.org

使用命令行导航到.xcworkspace文件所在的目录,即/Whisper-master/Demo/WhisperDemo

运行pod install

之后,在Xcode中打开WhisperDemo.xcworkspace,然后就可以运行演示了。

要将其安装为您自己项目的窗格,首先导航到项目的目录并执行pod init。将生成Podfile。在Podfile中写下以下内容:

platform :ios, '10.0' # or whatever your target platform is

target 'Your target's name' do
  use_frameworks!
  pod 'Whisper'
end

然后执行pod install。从现在开始,打开.xcodeproj文件。而是在您想要处理项目时打开.xcworkspace