I iphoneSDKid macrumors newbie Original poster Dec 23, 2009 15 0 Dec 24, 2009 #1 How do i include more than 4 tabs in a tabbar? Whenever i do now the forth tab becomes a tab saying "More". Is there any way for the tabbar to show all 5 tabs?
How do i include more than 4 tabs in a tabbar? Whenever i do now the forth tab becomes a tab saying "More". Is there any way for the tabbar to show all 5 tabs?
KoolStar macrumors demi-god Oct 16, 2006 825 9 Kentucky Dec 24, 2009 #2 The tabbar delegate automatically creates the more tab with 5 or more tabs.
I iphoneSDKid macrumors newbie Original poster Dec 23, 2009 15 0 Dec 24, 2009 #3 is there any way for it to not?
KoolStar macrumors demi-god Oct 16, 2006 825 9 Kentucky Dec 24, 2009 #4 What you would have to do is override the delegate for the 5th button that becomes the more, and reconnect it to a different view programatically.
What you would have to do is override the delegate for the 5th button that becomes the more, and reconnect it to a different view programatically.
I iphoneSDKid macrumors newbie Original poster Dec 23, 2009 15 0 Dec 25, 2009 #5 how how would i do that?
KoolStar macrumors demi-god Oct 16, 2006 825 9 Kentucky Dec 26, 2009 #6 You have to modify the array that contains the views programmatically then change the final member of the array to the view you want to display.
You have to modify the array that contains the views programmatically then change the final member of the array to the view you want to display.
I iphoneSDKid macrumors newbie Original poster Dec 23, 2009 15 0 Dec 28, 2009 #7 how what code would i use?