I'm writing a framework written in Objective-C and I've just encountered an issue after trying to link the framework target to another project. When I compile this last project, Xcode shows the error 'AFHTTPClient.h' file not found
.
My project is structured in this way : the headers I wrote by myself are public and the headers from the libraries I'm using are in a project visibility, thus the developer isn't polluted with unnecessary files.
The JPImgurKit.h
file imports the file JPImgurClient.h
(and other ones) which imports the AFHTTPClient.h
file and fails for it... When I put this last file in the public section it works (until another private file is imported) but I would like to avoid this, is it possible?