Different AppDelegate and Storyboard files for different targets

153 views Asked by At

I have an XCode Project(iOS App for only iPhones) and I want to use same codebase for publishing different application. I have to change icon, name and design for this second application. Therefore, I did not use Localization.

Also in codebase, I need some variables to hold different keywords for different targets.

Is there any way to do it or I have to clone same project and change this files after?

Thanks.

2

There are 2 answers

0
Nol4635 On

Take a look at this question.

StackOverFlow Question

You will have to convert the code to swift but this gives you the basics to get started.

0
matt On

One workspace, two app targets, one set of code files.

Alternatively, use a framework. In that case it might be one workspace and two complete Xcode projects plus the framework.