I am familiar building single iOS Apps, but i stuck on sharing common code to multiple apps with a Cocoa Touch Framework.
The Problem:
The Header-Files of the Framework are not visible/not linkable to the consuming App Project.
What i did:
1. I created a Project "Cocoa Touch Framework" called "libTestFramework"
- added a Class "GoodMorning.h/m" with a method
- changed the class from "project" to "public"
- build the project successfully and finally closed it
2. I created a Single View Application called "FrameworkTester"
- I then dragged the File "libTestFramework.xcodeproj" from the Finder into my XCode Project "FrameworkTester" directly under the root node in Project Navigator (see screenshot below)
- in the target "FrameworkTester" I added the libTestFramework under "Target Dependencies" and the "libTestFramework.framework" under "Link Binary With Libraries" as well.
3. in the App Project:
- I tried to import the "libTestFramework.h" File from the Framework in the ViewController.h, but it will not be found.
What did i misunderstood?
I created a public github-Repository containing both projects to reproduce: https://github.com/itinance/testCocoaTouchFramework
Some Screenshots following:


