I have an issue that popped up when I upgraded my version of xcode. I use unit tests, and I now when I try to import SenTestingKit (#import <SenTestingKit/SenTestingKit.h>), I get this error: SenTestingKit/SenTestingKit.h: No such file or directory.

I have looked at my build settings, and I have the following configuration options:

== Linking ==
Other Linker Flags: -framework Foundation -framework SenTestingKit -framework UIKit
Prebinding: No

== Search Paths ==
Debug Configutation: "/iphonesimulator4.0/Developer/Library/Frameworks" "/Xcode4/Library/Frameworks"

I've checked /Xcode4/Library/Frameworks, and the SenTestingKit.framework/ directory is there.

So what am I missing?

link|improve this question
1  
Sam, all Apple software in pre-release is under an SDK, so you won't (read: probably shouldn't) be able to discuss it outside of the Apple Developer forums. Post there, file a bug. – typeoneerror Jul 28 '10 at 16:09
4  
Typeoneerror, you mean an NDA. It is an SDK. – Steven Behnke Jul 28 '10 at 16:13
Questions like this are better asked on the Apple Developer Forums, where you're more likely to get an answer. – Abizern Jul 28 '10 at 17:21
I understand all that, but this could be answered about xcode generally. Search Paths and linker settings are present in xcode 3 as well. So I've edited the question to take the references to Xcode 4 out to make it a "general xcode" question. – Sam Valens Jul 28 '10 at 17:36
1  
I'm having the same issue - except with Frameworks that I have built. No matter what the search path is, it cannot find them. Time to file a bug! – huntaub Jul 30 '10 at 21:56
feedback

5 Answers

I had this same issue when creating a new test case in XCode. However, this was due to stupidity of me selecting the wrong target when creating the test case.

Using "File New...", the test case was being included and compiled with the target application settings instead of test case's target. Checking the Build Phases tab and looking in the "Compile Sources" disclosure revealed my particular issue.

link|improve this answer
Thank you that totally did the trick! – Chris Braunschweiler Mar 29 at 17:26
feedback

I had this issue after upgrading to xcode 4.3. Nothing seemed to work until I came across this post. I already had the same search paths, but changing the order solved the issue.

So from the article, you need the two following values in your Framework Search Paths, in this order.

$(SDKROOT)/Developer/Library/Frameworks
$(DEVELOPER_LIBRARY_DIR)/Frameworks
link|improve this answer
feedback

For my Framework Search Paths, I've explicitly added /$(DEVELOPER_DIR)/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS4.1.sdk/Developer/Library/Frameworks. Compiles correctly for simulator and device.

I am sure there are environment variables so that it works across SDK versions, so I will update answer if I find them.

screenshot

link|improve this answer
This solved the problem for me. That is, I added the framework from that path, and Xcode 4 automatically updated the Framework SearchPaths after that. I initially tried to use the SenTestingKit.framework in $(DEVELOPER_DIR)/Library/Frameworks/, but that didn't work. – August Lilleaas May 13 '11 at 12:11
feedback

I had this issue because there's a space in my Xcode installation: /Xcode 4.0.2

I fixed it by adding "${DEVELOPER_LIBRARY_DIR}/Frameworks" (with the quotes) to my Framework Search Paths.

link|improve this answer
In my case I also had to add quotes around $(SDKROOT)/Developer/Library/Frameworks. – azdev Dec 18 '11 at 22:11
feedback

You might want to check that Xcode is checking the Framework Search Paths: Framework Search Paths

link|improve this answer
Yes. I added ${DEVELOPER_LIBRARY_DIR}/Frameworks to the Framework Search Paths and that fixed it. – whitman Mar 22 '11 at 1:44
feedback

Your Answer

 
or
required, but never shown

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