依赖`AFNetworking (~> 2.5)` 未在任何具体目标中使用
The dependency `AFNetworking (~> 2.5)` is not used in any concrete target
我想安装 AFNetworking 但遇到问题,如何修复和安装?我用了 Getting Started with AFNetworking :
1。下载 CocoaPods
sudo gem install cocoapods
pod setup
2.a。创建 Podfile
touch Podfile
open -a Xcode Podfile
2.b。然后复制粘贴:
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '7.0'
pod 'AFNetworking', '~> 2.5'
添加:
target 'MyApp' do
pod 'AFNetworking', '~> 2.5'
end
参见:https://guides.cocoapods.org/using/the-podfile.html
然后从项目目录运行pod install
我想安装 AFNetworking 但遇到问题,如何修复和安装?我用了 Getting Started with AFNetworking :
1。下载 CocoaPods
sudo gem install cocoapods
pod setup
2.a。创建 Podfile
touch Podfile
open -a Xcode Podfile
2.b。然后复制粘贴:
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '7.0'
pod 'AFNetworking', '~> 2.5'
添加:
target 'MyApp' do
pod 'AFNetworking', '~> 2.5'
end
参见:https://guides.cocoapods.org/using/the-podfile.html
然后从项目目录运行pod install