Let’s say I have two iPhone apps with shared core functionality.
The apps isn’t entirely the same but 60% of the views are identical. Is there any good way to use the same code in both projects without having to copy paste?
I don’t know too much about what SVN or GIT offers.
Would really appreciate any advice!
There’s a couple ways to approach this.
One way would be to put the core functionality into a framework or library that your individual apps call into.
Another way would be to have a “Shared” code folder and then the two separate projects referring into that Shared code folder and building their own apps from it.