2

I have 6 tabs in my iOS app. and i need to set 4th tab as more and show 3 tabs as table in 4th tab. Is there any simple way to do this. to tell iphone-sdk to treat 4th tab as last tab and as "more" ?

Mihir Mehta
  • 13,743
  • 3
  • 64
  • 88
  • If you add more than 5 tabs iOS will create the More tab as the 5th and add the More screen for you. Are you saying you only want 4 tabs to show before this happens? – Kirby Todd May 07 '12 at 06:41
  • [May be this will help you](https://www.google.com.pk/search?q=iphone+how+to+add+more+tab+in+UITabbarcontroller) – Adil Soomro May 07 '12 at 06:42

1 Answers1

0

Make your 4th tab be this:

[[UITabBarItem alloc] initWithTabBarSystemItem:UITabBarSystemItemMore tag:0];
Kirby Todd
  • 11,254
  • 3
  • 32
  • 60
  • 1
    Hi, I want to handle the rest of the 3 tabs on this 4th tab , this makes it look loke more tab. but it does not handle rest of the tabs in uitableview. Is there any work around for same – Mihir Mehta May 07 '12 at 07:11