I've used RestKit about a year ago when it was going through the transition between 0.1 and 0.2. I had everything running using a manual install.
I've now started a new project and wanted to use RestKit again. But I can't get it to install properly. This time I did the cocoa pods method of install and it all looked like it went well. I had included the #import in my .pch file so it was global.
The project compiled and build was successful but when I opened the class file in the editor where I had some RestKit code in (getting the RKManagedObjectStore etc) I was getting semantic errors. It couldn't find the RestKit classes.
I removed the import of RestKit from my .pch file and just put it in my header file of the class I was working on I got the error that RestKit could not be found.
In the troubleshooting guide on RestKit's site it basically states to ensure the project is building in the derived data. I checked and everything was ok.
I also tried deleting the derived data and cleaning the project without luck.
Any ideas?