views:

30

answers:

1

I get the following error in Xcode, when building project. Can someone help me fix it?

#ifdef __OBJC__
    #import <Foundation/Foundation.h>
    #import <UIKit/UIKit.h>
#endif

with this error:

Prefix.pch:6:38: error: Foundation/Foundation.h: No such file or directory
Prefix.pch:7:28: error: UIKit/UIKit.h: No such file or directory
A: 

Sounds like you're not linking against the frameworks correctly, or more likely aren't copying the headers somehow. Likely you accidentally changed the include path of the project.

Jared P