I have an iOS project in Xcode 5. I want to use parse in the project.
- Compile project, everything is ok
- Add Parse framework
- Compile project, pch precompile fails. Errors indicate the pch files imports are being compiled as C instead of ObjC
- Remove Parse framework, do a 'clean'.
- Compile project, pch precompile still fails.
Here is the pch file content, unchanged from default set by Xcode when generating a project:
#ifdef __OBJC__
#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
#endif
Any ideas!?