Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

RestKit Derived Data Troubles

Tags:

ios

I'm trying to get going with Restkit. I've followed the install instructions here: https://github.com/RestKit/RestKit/wiki/Installing-RestKit-in-Xcode-4.x

I'm running Xcode 4.3.2. When I try to run the RKCatalog project, I get an error: clang: error: no such file or directory: '/Users/sparky/Library/Developer/Xcode/DerivedData/RKCatalog-fdohdnazcupmydfaxxedezitkbpl/Build/Products/Debug-iphonesimulator/RestKit/RestKit'

I'm not an Xcode expert. I'm not sure where to go from here.

like image 914
Sparky1 Avatar asked Dec 21 '22 21:12

Sparky1


1 Answers

If you have Restkit.framework added in the libraries in "Build Phases" (Targets > Build Phases > Link Binary With Libraries) you have to remove it. I learnt from one of the discussions on GitHub that Restkit.framework is for Mac OSX and libRestKit.a is for iOS.

like image 122
Ravi Avatar answered Jan 06 '23 13:01

Ravi