I want to manage projects in workspaces using Xcode 4 with Cocoa Touch Static Library projects which contain shared code that I could reference from other projects. Accordin
I got this to work by doing the following. 1. Adding the Library as a second project to the workspace. 2. Link Binary with Libraries > Add the static library.
-- THE IMPORTANT PART --
Add the following to the "Header Search Paths" under build settings
${BUILT_PRODUCTS_DIR}
This will link the built header files to the project. No more build errors.