将cocoapods添加到我的PodFile

时间:2018-05-09 08:45:52

标签: ios swift cocoapods podfile

我正在开发一款需要cocoapods的应用。在这个应用程序的手册中写了

  

将此添加到您的Podfile:

pod 'SwiftSocket'
  

然后运行pod install

但是当我使用pod init制作一个pod文件到我的文件夹然后open -a Xcode Podfile并在那里添加行

target 'SwiftSocket' do
pod 'SwiftSocket'
end

和最后pod install它说我错误

  

无法找到名为SwiftSocket的目标,确实找到了SwiftSocket iOSSwiftSocket macOSSwiftSocket tvOSiOS Example

编辑____________

我的文件夹的图片。

Picture of my folder

以及如何查看我的Podfile enter image description here

1 个答案:

答案 0 :(得分:2)

它工作正常,请查看我的podfile

# Uncomment the next line to define a global platform for your project
platform :ios, '10.0'

target 'Demo' do
  # Comment the next line if you're not using Swift and don't want to use dynamic frameworks
  use_frameworks!

pod 'SwiftSocket'

  # Pods for Demo

end

Demo是项目名称。 目标名称将是您的项目名称