電腦重裝系統(tǒng),重新安裝cocoaPod的時候又遇到好多坑吼拥。給Podfile中添加好后運行終端命令報錯
[!] The dependency `AFNetworking (~> 3.1.0)` is not used in any concrete target.
The dependency `SDWebImage` is not used in any concrete target.
The dependency `SVProgressHUD` is not used in any concrete target.
The dependency `IQKeyboardManager (~> 4.0.5)` is not used in any concrete target
出這個錯是告訴我們我們所用的庫沒有指定target钾埂,它不知道用在哪里债朵,所以就給報錯了草慧。然后到網(wǎng)上搜了一下暑椰,找到解決辦法:
官網(wǎng)是這樣給推薦的:
在創(chuàng)建Podfile的時候,用這種格式使用,
platform: ios, '8.0'
#use_frameworks!個別需要用到它指黎,比rureactiveCocoa
target 'ODCaiCustomer' do
pod'AFNetworking'
pod'SDWebImage'
pod'SVProgressHUD'
pod'IQKeyboardManager'
end
如果錯誤使用use_frameworks!會報出以下錯誤,因為use_frameworks是switf下使用的時候使用的州丹。
[!] Invalid `Podfile` file: undefined method `user_frameworks!' for #.
出現(xiàn)這種情況醋安,需要我們自己試著注銷use_frameworks!
這樣再在終端中vim Podfile就可以成功了。