How to make a Universal Binary out of two separate projects?

277 views Asked by At

I have got an iPhone and an iPad app - both are separate fully working XCode projects. What I want to do is make a universal binary app out of these two. how can I do it?

Thank you!

1

There are 1 answers

6
Max On BEST ANSWER

If that projects using the same code it would be quite easy: just create new project, add sources and set Targeted device family to iPhone/iPad. However if you have separate code for each device, my congratulations, you'll have a big pain in the butt: you have to merge that sources and check for the device at runtime. Everything else is like in the first case.