Reputation: 931
I have more than two Apps which will be available on App Store, Those apps are small Apps for different departments/categories (let's suppose Medical App, Tourism/Travel App, Education App, etc).
Now I want to develop some "General app" which will contain above small apps as micro-apps,
There will be icons/buttons on Main Screen to navigate to any category (Health, Travel, Education etc) inside the General App, rest of the App Flow inside each category will remain same as in Mini Apps.
The mini-apps and General App will be available on App Store separately, so any new version/update in the source code of Mini Apps need to be updated into General App.
Is it possible to add more than 1 projects into one project assuming each project has it's own storyboard,xibs.
Upvotes: 0
Views: 693
Reputation: 740
You can create a single project with different build targets, and each build target could be one of your apps.
Also you can use xcconfig files to config the settings of the different build targets
Upvotes: 1