依赖性`AFNetworking(〜> 2.5)`不用于任何具体目标

时间:2016-05-26 15:21:24

标签: ios xcode git afnetworking cocoapods

我想安装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'

1 个答案:

答案 0 :(得分:64)

添加:

pod install

请参阅:https://guides.cocoapods.org/using/the-podfile.html

然后从项目目录中运行MIN