2

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
4

2 に答える 2

0

の上部にソースがありますPodfileか?

source 'https://github.com/CocoaPods/Specs.git'
于 2016-09-15T08:29:42.207 に答える
-1

次のことを行います。

$ sudo rm -fr ~/Library/Caches/CocoaPods/
$ rm -fr ~/.cocoapods/repos/master/
$ sudo rm -fr Pods/
$ sudo gem install cocoapods
$ pod setup

次に実行し$ pod installます..うまくいけばうまくいきます

于 2018-06-04T10:45:36.797 に答える