I am very fixated trying to get ParseKit.framework ( this ) to work at all, without even bothering to implement it before it launches the demo application that comes with it.
What happens, the compiler cannot find <Foundation / Foundation.h> or something that I thought the header was in a related structure. Exact error: "Problem with vocabulary or preprocessor: Foundation / Foundation.h file not found."
Here's the code, only from ParseKit_Prefix.pch:
#ifdef __OBJC__
#import <Foundation/Foundation.h>
#endif
Nothing out of the ordinary, did I somehow mess up the file paths? I reinstalled Xcode, reloaded ParseKit, and nothing helps. The suggestions here did nothing, and this is not this . When I make a new project or use another project and load the Foundation.framework and #import header, it works fine. If I disconnect the framework, I cannot find it again. Has anyone else had such a problem? Did I download it somewhere? I find it very difficult to find exactly where the Xcode UI connects things, an apple should enjoy disappointing people, so if anyone has something they might think, please give me some feedback, I'm terribly confused right now .
source