due to working needs, I need to integrate an xcodeproj into my existing project as subproject.
The structure of my two projects is the following
What is the best practice to integrate (no cocoapods) the subProject into my main project?
I have done the following steps as you can see from the picture below:
- I have copied the folder and all the files to my MainProject folder.
- In XCode I have added files to MainProject and then I have choose the "SubProject.xcodeproj" and I can see the structure in the project navigator.
- I have added into the "Search Header Path" the following sentence: "${SRCROOT}/../SubProject" with recursive search.
I am not be able to import into my main project the header of the sub project. How can I solve my situation? What I am missing?