Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have an iOS project using CocoaPods. Everything was working smoothly until another developer started to work on the same project. He made some changes (only to code as far as I know) and made a new branch in the repo. I have checked out his branch and tried to build it, but I am getting an error: ASLogger/ASLogger.h file not found.

Even if I delete the whole project and make a fresh copy and use 'pods install .' the build failure is still there. Do you have any idea where the problem can be? If you need some more infos, just ask.

share|improve this question
Instead of using double quote style, #import "ASLogger.h" i tried this, #import <ASLogger.h> And it worked for me :) – Baig Jun 5 at 11:05

8 Answers

Update

I've updated this since my original answer, that got the downvote, so I hope this helps. And if it does, hopefully it will get my vote back.

If the headers aren't being imported, you probably have a conflict in the HEADER_SEARCH_PATHS. Try and add $(inherited) to the header search paths in your Build Settings to make sure that it pulls in any search paths included in the .xcconfig file from your CocoaPods.

This should help with any conflicts and get your source imported correctly.

share|improve this answer

Here's what worked for me:

Go to the Target > "Build Settings" tab and find the "User Header Search Paths" setting.

Set this to "$(BUILT_PRODUCTS_DIR)" and check the "Recursive" check box.

Now the built target will search the workspace’s shared build directory to locate the linkable header files.

share|improve this answer
1  
This worked for me – David Faivre Jan 11 at 20:38

Both other answers didn't help here. I found 2 other problems that might fix it:

EDIT You can check a symlink this way: create a textfile named 'check' without an extension. copy these lines into it:

file=/Users/youUserName/XcodeProjectName/Pods/BuildHeaders/SVProgressHUD/SVProgressHUD.h
if [[ ! -e $file &&  -L $file ]]; then
  echo "$file symlink is  broken!"
else
  echo "symlink works"
fi

Then go to the terminal, change to the folder where your check file is located and type

bash check
share|improve this answer
This is the correct answer. Specifically the part about Configurations. Thanks. – Roger Nolan Feb 11 at 12:05
Thank you very much! The first entry solved it for me. Pods was set for the first target in our project only. This compiled fine, but the other target didn't. So I added the Pods configuration to it as well and now the issue is gone. – mwidmann Jun 7 at 11:22

The wiki gives an advice on how to solve this problem:

If Xcode can’t find the headers of the dependencies:

Check if the pod header files are correctly symlinked in Pods/Headers and you are not overriding the HEADER_SEARCH_PATHS (see #1). If Xcode still can’t find them, as a last resort you can prepend your imports, e.g. #import "Pods/SSZipArchive.h".

share|improve this answer
3  
Could someone elaborate on exactly how to "Check if the pod header files are correctly symlinked in Pods/Headers" please? – Dave Collins Oct 16 '12 at 20:05
please see my answer above for how to check a symlink – brainray Dec 27 '12 at 17:35
Please also see brainray's answer about Configurations before you mangle your import statements. – Roger Nolan Feb 11 at 12:06

Header files, you'll be the death of me...

Finally got it to work by adding (including quotes)

"${PODS_ROOT}/BuildHeaders"

to the User Header Search Paths entry, and checking 'recursive'.

share|improve this answer

I had similar symptoms and found that the pods.xcconfig file was not being included in the specific target I was trying to build. Some of the other suggested solutions worked for me, but this one seemed to address part of the underlying issue.

Pods.xcconfig not working

The simple solution was to change set the configuration file for the targets that didn't have one set.

Pods.xcconfig working

I can't figure out how to make sure the podfile sets the xcconfig for multiple targets. Though..

share|improve this answer

Did you try importing Cocoapods style?

#import <ASLogger.h>

The info on the site is not really clear, I submitted a pull request:

https://github.com/CocoaPods/cocoapods.org/pull/34

Update: They pulled my request :)

share|improve this answer
Instead of using double quote style, #import "ASLogger.h" i tried this, #import <ASLogger.h> And it worked for me :) – Baig Jun 5 at 11:02

i found ${PODS_HEADERS_SEARCH_PATHS} is missing and it is not defined in my develop git branch, So i added "$(SRCROOT)/Pods/Headers/" for Header Search Paths with recursive

That is ok for me

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.