Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

AFNetworking.h file not found

I am using pod 'AFNetworking', '2.6.0'.

But every time I am getting this error:

enter image description here

Recently I updated my mac gems. After updating gems I am getting this error.

Can you please any one help?

like image 914
Baadshah Avatar asked May 25 '16 09:05

Baadshah


3 Answers

Try

#import "AFNetworking.h"

instead of

#import <AFNetworking/AFNetworking.h>

And, of course, do not forget to check the header paths inside your project properties and check if cocoapods correctly installed 'AFNetworking' project. Try to find AFNetworking.h file inside 'pods' directory.

EDIT Type, what is writen inside 'header search path' 1. enter image description here 2. What is placed inside /path/to/app/Pods/Headers/Public/ ?

like image 72
Vyacheslav Avatar answered Oct 17 '22 21:10

Vyacheslav


If you have updated your gems, check version of cocoapods if is version 1.0.0, probably you need to change your Podfile.

ex:

platform :ios, 'IOS_VERSION_HERE'
target 'YOUR_TARGET_HERE' do
    pod 'AFNetworking', '2.6.0'
    pod ...
    pod ..
end

After that in terminal go to you project folder where is the Podfile located and write command:

pod update

After that if you see some warnings try to fix them. The warnings will guide you what to do if is necessary. Then try to clean your project and Build it again.

IMPORTANT!!!

When you use Pod's you must open YOUR_PROJECT_NAME.xcworkspace instead of YOUR_PROJECT_NAME.xcodeproj

Hope this help.

like image 31
donjordano Avatar answered Oct 17 '22 20:10

donjordano


After updating pod's to (pod 'AFNetworking', '3.0') I was facing same issue.

Replacing

#import "AFNetworking.h"

With

@import AFNetworking;

solved my problem!

like image 2
Muhammad Usman Avatar answered Oct 17 '22 20:10

Muhammad Usman