I have an iPhone project that uses a framework I added to the frameworks section in Xcode. The path to the framework is given there correctly.
But when I build&run the project, the debugger console tells me that the library could not be loaded and gives a wrong path:
"dyld: Library not loaded: /System/Library[...]"
For some reason that I cannot figure out Xcode insists on trying to find the image of the library in /System/Library rather than the framework folder given by me.
How can I fix this? How is it possible to include a framework in a project?
But when I build&run the project, the debugger console tells me that the library could not be loaded and gives a wrong path:
"dyld: Library not loaded: /System/Library[...]"
For some reason that I cannot figure out Xcode insists on trying to find the image of the library in /System/Library rather than the framework folder given by me.
How can I fix this? How is it possible to include a framework in a project?