问题
Using Xcode6-Beta, I'm unable to compile code to run on the my iOS7.1 device. I get errors like this:
While building module 'UIKit' imported from /Users/johnboiles/Programming/iOS/Playground-ios/Playground-ios/AppDelegate.h:9: fatal error: 'Foundation/Foundation.h' file not found
#import <Foundation/Foundation.h>
^
In file included from /Users/johnboiles/Programming/iOS/Playground-ios/Playground-ios/AppDelegate.m:9:
/Users/johnboiles/Programming/iOS/Playground-ios/Playground-ios/AppDelegate.h:9:9: fatal error: could not build module 'UIKit'
#import <UIKit/UIKit.h>
~~~~~~~^
Interestingly Foundation.framework is in fact NOT in /Applications/Xcode6-Beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS8.0.sdk/System/Library/Frameworks like it was in previous versions of Xcode. I haven't (knowinglyly at least) modified anything in the SDKs.
回答1:
Removing and reinstalling Xcode6-Beta fixed the issue.
If anyone has any insight into what happened to Foundation.framework, I'd love to hear it.
回答2:
Product->Clean did the trick for me
回答3:
I did the following steps and everything went back to normal.
- Reinstall the current Xcode
- At the Xcode's first launch,
Shift + Command + Kto clean the previous build - Wait until the indexing done.
- Build again.
来源:https://stackoverflow.com/questions/24152721/xcode6-foundation-foundation-h-file-not-found