最近我在我的mac中成功安装了cocoapods v 1.0.0,我试图'AFNetworking', '~> 3.0'
在我的项目目录的pod文件中安装依赖项。通过将以下代码放入我的 pod 文件中,我已成功创建
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '8.0'
pod 'AFNetworking', '~> 3.0'
pod install
但是当我在终端中写入时,它给了我以下错误
[!] The dependency `AFNetworking (~> 3.0)` is not used in any concrete target.
谁能建议我为什么会收到此错误以及如何解决此问题?