The Fonz
The Fonz

Reputation: 207

Merge two iOS Project into one

Is that possible to merge 2 projects into one.

I know it is possible to add all ressources (classes, storyboards, images) in one project, what I want to do is a more difficult : 1 big project own 2 others "subprojects" (with an app on it). This big project have a menu with 2 buttons (each button brings you to an app)

I think each project should have its own targets, own storyboards...

I that possible to do in IOS ?

Upvotes: 0

Views: 1979

Answers (1)

Phillip Mills
Phillip Mills

Reputation: 31026

Each of the subprojects would need to be built as a library rather than an app. The app would be created by the 'big project' and would create view controllers based on library objects when buttons were tapped.

The problem with just forcing two apps to exist under a third is that you'd have 3 main routines and app delegates (etc.) which would break linking.

Upvotes: 2

Related Questions