Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to have multiple projects acts like one app

Tags:

xcode

ios

I am developing a big application (developed as separate projects ) that actually need to be linked in one project and access them via a menu. is that possible?

What I have done so far is :

1) I have made a project which will contain the main navigation menu. (Let's call it Master).

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

although I was able to access class files of A and B from Master. But I could not make it pushed the desired view viewController in the project A it says Incompatible pointer types initializing 'ViewController *' with an expression of type 'UIViewController *'

I am stuck at this point. so, any advice on having multiple projects running seamlessly?

UPDATE I tried to use workspaces I created a test project then included projects A, B. What I thought was making a button in the test project that pushes the first ViewController of Project A... that would make sense, right? but Xcode gives me a red error regarding not found file.

like image 691
adel Avatar asked Jun 16 '12 11:06

adel


1 Answers

You can use Workspace concept of Xcode

like image 166
Igor Avatar answered Oct 13 '22 06:10

Igor