How can I combine multiple iPhone applications in to one application?

前端 未结 3 766
没有蜡笔的小新
没有蜡笔的小新 2020-12-19 13:26

At the moment I have 2 completed iPhone applications. Both these applications must be contained in to one application. I can\'t have multiple apps on the app store and to av

相关标签:
3条回答
  • 2020-12-19 13:42

    It seems a little strange to me to want to combine two applications into one, but if your individual applications are reasonably well factored, this should be trivial. Figure out the UI presentation you're going to use to switch between the two applications (tabs, or a list view, or whatever), then set up a navigation controller, adding the "main" views of the two applications.

    You then provide a way for the user to transition between the two applications. Piece of cake.

    0 讨论(0)
  • 2020-12-19 13:53

    Why not just build a plugin architecture as your application, and let the plugins interface with it, creating what you need? There are many applications on the store which take a similar approach.

    0 讨论(0)
  • 2020-12-19 14:01

    Have a look at the three20 library. It provides a useful Launcher View which allows you to create a view similar to the standard iphone home screen with pages and icons. To add a new application you just add a new icon and point it at the first view controller for your app

    0 讨论(0)
提交回复
热议问题