Question

I'm using XCode 4.2 and I'm trying to add the parsekit library to my project, this is what I did:

  1. Drag the ParseKit.xcodeproj to my project in XCode as a Sub Project.
  2. Adding the libparsekit.a to the link binary with libraries list
  3. Trying to compile, everything still works.

Adding this to my code:

#import <ParseKit/ParseKit.h>

Then I've tried typing some code, and autocomplete works, so it must have found the library... But when I compile, I get this error:

'ParseKit/ParseKit.h' file not found

I also tried to replace the import with the following lines of code, but nothing worked, they all gave the same error...

#import "ParseKit/ParseKit.h"
#import "ParseKit.h"
#import <ParseKit.h>

Anyone got an idea on how to resolve this problem?

Here's a video on how I imported ParseKit into my project: http://youtu.be/xjF8c2vo9vA

Was it helpful?

Solution

Developer of ParseKit here. Please checkout the instructions for ParseKit on iOS here:

http://parsekit.com/iphone.html

Although the instructions are from Xcode 3, I think you are missing steps 7 & 8.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top