I have two projects called Project A and Project B. Both projects have different pod files.
Now I want to add Project B into Project A. So my Project A is final code and I want to use a Project B files in Project A and vice versa. So How can I achieve it in Xcode8?
Create a workspace with both Projects A and B.
When you write your POD file, you can set the workspace file, the project file and the build target.
For example:
Targets the
Rnd_Lab(iOS).xcodeproj
project in a completely other directory and sets the pods to targetRND
. Then, it writes all of these settings to the specifiedRND(iOS).xcworkspace
. This workspace is the one you would have already setup with projects A and B.