1

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.

Community
  • 1
  • 1
iCoder86
  • 1,874
  • 6
  • 26
  • 46
  • By "UI presentation", that poster was referring to the fact that you need to design or come up with a solution that enables a user to easily switch between the main views of each app, within the primary app container. – Luke Jun 20 '11 at 13:12
  • @Krypton : Thanks.. i had miss read. – iCoder86 Jun 20 '11 at 13:21

1 Answers1

1

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.

Snips
  • 6,575
  • 7
  • 40
  • 64