1
我已經通過終端在我的Macbook上成功下載並安裝了Cocoapods。我然後'cd'到我的.xcodeproj目錄並在終端中創建一個新的pod'pod init'。我通過取消註釋平臺編輯 'Podfile' 在Xcode:IOS, '9.0' 並添加 '莢 'DCKit', '〜> 1.0'' 所以它看起來像:在XCode/Swift上安裝/使用DCKit的問題
# 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。請幫忙。我錯過了什麼?