Xcode6 'Foundation/Foundation.h' file not

2019-06-08 20:17发布

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.

标签: ios xcode6
3条回答
Animai°情兽
2楼-- · 2019-06-08 20:46

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.

查看更多
爱情/是我丢掉的垃圾
3楼-- · 2019-06-08 20:46

Product->Clean did the trick for me

查看更多
老娘就宠你
4楼-- · 2019-06-08 20:48

I did the following steps and everything went back to normal.

  1. Reinstall the current Xcode
  2. At the Xcode's first launch, Shift + Command + K to clean the previous build
  3. Wait until the indexing done.
  4. Build again.
查看更多
登录 后发表回答