我已经通过终端在我的Macbook上成功下载并安装了Cocoapods。然后我'cd'到我的目录,它保存我的.xcodeproj,并在终端创建一个新的pod'pod init'。我通过取消注释平台编辑Xcode中的'Podfile':ios,'9.0' 并添加'pod'DCKit','〜> 1.0 '' 所以它看起来像:
# Uncomment the next line to define a global platform for your project
platform :ios, '9.0'
target 'myApp' do
use_frameworks!
pod 'DCKit', '~> 1.0'
target 'myAppTests' do
inherit! :search_paths
end
target 'myAppUITests' do
inherit! :search_paths
end
end
我保存文件,&退出Xcode。然后我在我的终端中“pod install”,获得所有成功消息:
“Pod安装完成!Podfile有1个依赖项,安装了1个pod。”
然后我重新打开XCode,我看不到或找不到DCKit。请帮忙。我错过了什么?
答案 0 :(得分:1)
播放' pod install' cocoapods在同一个.xcodeproj目录中创建一个带有后缀.xcworkspace的新文件。而不是打开.xcodeproj文件,打开.xcworkspace文件,模块就可以使用了。