I have two apps as individual project written in Swift in Xcode: process1.app
and process2.app
. Also, I have "installer" for those two apps named main.app
which has GUI implemented.
I am not able to connect those three apps within same project, where when user install main.app
, he is going to install process1.app
and process2.app
.
Can you give me some ideas how to connect all them within same project?
1 Answers
Answers 1
Your description of your project and problem is really vague.
It sounds like you should just scrap the three different targets and just use one target as a launcher for both process1.app and process2.app. If your launcher has a GUI, create buttons that launch each process. You can also modify your program to take command line arguments to launch process1, process2, or both from the command line.
0 comments:
Post a Comment