无法在现有的Xcode项目中安装cocoaPods

时间:2017-08-31 07:12:49

标签: ios swift xcode install cocoapods

我在Xcode(swift 3)中有一个现有的项目,其中设计了详细的UI。我仍然无法将CocoaPods安装到该项目中。

我已经看过有关如何安装可可豆荚的所有指南人们创建一个新项目并将其安装在该新项目中,但是,我想将其安装在现有(设计的UI)项目中。试图在该项目中安装可可豆荚让我进入一个工作区,显示左边的所有空白和红线,请看截图并提出解决方案。谢谢!

Screenshot of workspace

1 个答案:

答案 0 :(得分:1)

请按照以下步骤将pod安装到现有项目中:

打开终端并使用cd命令导航到包含项目的目录: cd~ / Path / To / Folder / Containing / Project

接下来,输入以下命令:

pod init

这会为您的项目创建一个Podfile。 最后,键入以下命令以使用Xcode打开Podfile进行编辑:

打开-e podfile

它会为您打开podfile。

现在编辑podfile以添加所需的框架。它看起来应该与下面的代码段类似。

# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'
target 'ProjectTarget' do
  # Comment the next line if you're not using Swift and don't want to use dynamic frameworks
  use_frameworks!
pod 'Firebase/Messaging'
  # Pods for ProjectTarget
  target 'ProjectTarget-iOSSDKTests' do
    inherit! :search_paths
    # Pods for testing
  end
  target 'ProjectTarget-iOSSDKUITests' do
    inherit! :search_paths
    # Pods for testing
  end
end

然后将pods集成到项目中并创建.xcworkspace。

下次打开.xcworkspace继续项目。