How multiple projects act as one application

I am developing a large application (developed as separate projects) that really needs to be connected in one project and accessed through the menu. perhaps?

what i have done so far:

1) I made a project that will contain the main navigation menu. (Let me call him Master).

2) I imported the necessary projects A, B into Master.

although I managed to access the files of classes A and B from Master. But I could not get him to click the desired view viewControllerin the project A, he saysIncompatible pointer types initializing 'ViewController *' with an expression of type 'UIViewController *'

I am stuck at this point. so, any advice that several projects work without problems?

UPDATE I tried to use workspaces, I created a test project, then included project A, B .. what I thought was doing a button in a test project that pushes the first ViewController of project A .. it will make sense, right? but xcode gives me a red error regarding a file not found.

+5
source share
1 answer

You can use the Xcode Workspace Concept

+5
source

All Articles