I install RestKit v0.25.0 with CocoaPods v0.39 in Xcode 7.1 and have problem with imports. When I used CocoaPods v0.38.2 everything was amazing.
"RKHTTPUtilities.h" file not found. It solves after set recursive in headers search path for "${PODS_ROOT}/Headers/Public/RestKit".
But I get this error 'lcl_RK.h' file not found in RKLog.h.
I also try do this.
I found only one not the best way. Add "$(PODS_ROOT)/RestKit/Vendor/LibComponentLogging/Core" in headers search path for project target.
Explain: lcl_RK.h file is in folder path RestKit/Vendor/LibComponentLogging/Core, all other files in folder RestKit/Code/. When CocoaPods generates Headers folder, it misses lcl_RK.h file.
If anyone is having problems with RestKit 0.26.0 and Cocoapods 1.0.1, in a Swift project using Xcode 7.3, hopefully this will help!
This solution worked at least on 2016-06-03, but since it uses specific git branches maybe these will be merged, so if this does not work for you please check if this git branches have been merged/moved/deleted.
Clean up before everything
Quit Xcode
Use mcfedr's RestKit fork
Must be used together with "reachablility" branch of AFNetworking
Use module import syntax in Bridging Header
Now it should work!