Reputation: 1895
i am developing an application in iPhone, where i need to implement my 5 application under single application.
i.e. i have 5 different application's source code and i need to develop single application which will list these 5 application icon(shortcut) to each. on clickkin
i tried Google but i cant find anything related to that.
i find this but i don't know "UI presentation".
if any one knows about than please help.
Thanks.
Upvotes: 1
Views: 89
Reputation: 6763
Take a look at UITabBar which provides a convenient way to switch between Application views - and works best with up to 5 top-level views. You can then dig into your 'separate' applications from each top-level Tabbed view by incorporating a UINavigationBar into each.
Upvotes: 1