web-dev-qa-db-fra.com

La dépendance `AFNetworking (~> 2.5)` n'est utilisée dans aucune cible concrète

Je souhaite installer AFNetworking mais j'ai un problème, comment puis-je réparer et installer? J'ai utilisé Premiers pas avec AFNetworking :

1. Téléchargez CocoaPods

Sudo gem install cocoapods
pod setup

2.a. Créer un fichier pod

touch Podfile
open -a Xcode Podfile

2.b. Et copiez-collez ceci:

source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '7.0'
pod 'AFNetworking', '~> 2.5'
19
edithpiaf

Ajouter:

target 'MyApp' do
  pod 'AFNetworking', '~> 2.5'
end

Voir: https://guides.cocoapods.org/using/the-podfile.html

Exécutez ensuite pod install depuis le répertoire du projet.

64
Nathan Hillyer