Podfile にリストされているポッドの podSpec が見つかりません。私の Podfile は次のようになります。
use_frameworks!
target 'MyTargetName' do
pod 'Gloss'
pod 'IQKeyboardManagerSwift'
pod 'ICViewPager'
pod 'SkyFloatingLabelTextField'
pod "KCFloatingActionButton"
pod "TSMessages"
end
最初にエラーが発生しました:
[!] Unable to find a specification for `IQKeyboardManagerSwift`
IQKeyboardManagerSwift を削除しようとしましたが、別のエラーが発生します。
[!] Unable to find a specification for `ICViewPager`
私はこれらのプロジェクトの両方をチェックしました。それらは cocoapods.org に存在し、podspec は github と pod リポジトリに存在します。Xcode 8.0 と Swift 3.0 にアップデートしたときにすべてが始まりました。ここで何がうまくいかなかったのですか?
編集:
ココアポッドのダウンロードに関連する問題を修正する回避策を見つけることができました:
use_frameworks!
target 'MyTargetName' do
pod 'Gloss'
pod 'IQKeyboardManagerSwift', :git => 'https://github.com/hackiftekhar/IQKeyboardManager'
pod 'ICViewPager', :git => 'https://github.com/iltercengiz/ICViewPager'
pod 'SkyFloatingLabelTextField’, :git => 'https://github.com/Skyscanner/SkyFloatingLabelTextField'
pod "KCFloatingActionButton”, :git => 'https://github.com/kciter/KCFloatingActionButton'
pod "TSMessages”, :git => 'https://github.com/KrauseFx/TSMessages'
end