我正在开发一款需要cocoapods的应用。在这个应用程序的手册中写了
将此添加到您的Podfile:
pod 'SwiftSocket'
然后运行pod install
但是当我使用pod init
制作一个pod文件到我的文件夹然后open -a Xcode Podfile
并在那里添加行
target 'SwiftSocket' do
pod 'SwiftSocket'
end
和最后pod install
它说我错误
无法找到名为
SwiftSocket
的目标,确实找到了SwiftSocket iOS
,SwiftSocket macOS
,SwiftSocket tvOS
和iOS Example
。
编辑____________
我的文件夹的图片。
答案 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
是项目名称。 目标名称将是您的项目名称。