我试图通过我的Cocoapods Podfile安装此pod' YBTextPicker ',而不是将项目拖放到Xcode中。但是,运行pod install
命令后出现以下错误:
[!]找不到'YBTextPicker'的规范。
我在做什么错?这是我的Podfile:
platform :ios, '9.0'
use_frameworks!
target 'ViewLib' do
pod 'SkyFloatingLabelTextField', '~> 3.0'
pod 'TPKeyboardAvoiding', '~> 1.3.1'
pod 'BEMCheckBox'
pod 'EPSignature', :git => 'https://github.com/MC1Tecnologia/EPSignature.git'
pod 'YBTextPicker', :git => 'https://github.com/YahyaBagia/YBTextPicker.git'
pod 'Charts', '~> 3.1.1'
end
Here is the framework URL(如果要检出)。
答案 0 :(得分:1)
这是因为YBTextPicker
不作为Pod存在。您不能只是将任何git项目添加到podfile
中;他们需要有一个podspec
(并且,如果您想在不指定git路径的情况下安装它们,则需要将他们的podspec添加到master Cocoapods repo中。)
您可以派生分支并创建自己的Pod。但这有点工作。