Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>More button is automatically generate when tabs are more than 5 in iPhone. So you can't do that. Instead you should make a custom tabbar with the help of <code>UIView</code> and <code>UIButton</code>s.</p> <p>See how to add <code>UIViewController</code>'s view on <code>self.view</code>.</p> <pre><code>[self addChildViewController:yourViewController]; yourViewController.view.frame = anyFrame; [self addSubview:yourViewController.view]; [yourViewController didMoveToParentViewController:self]; </code></pre> <p>By this you can add different <code>UIViewController</code> on each button's click. All the best! </p> <p>Well If you dont want to create it yourself. Below is the list of custom tabbars find the one which suits your requirement.</p> <ol> <li><a href="https://github.com/alikaragoz/AKTabBarController" rel="nofollow noreferrer">AKTabBarController</a> </li> <li><a href="https://github.com/iosdeveloper/InfiniTabBar" rel="nofollow noreferrer">InfiniTabBar</a></li> <li><a href="https://github.com/boctor/idev-recipes/tree/master/RaisedCenterTabBar" rel="nofollow noreferrer">RaisedCenterTabBar</a></li> <li><a href="https://github.com/hollance/MHTabBarController" rel="nofollow noreferrer">MHTabBarController</a></li> <li><a href="https://github.com/i300/TweetBotTabBar" rel="nofollow noreferrer">TweetBotTabBar</a></li> <li><a href="https://github.com/aalittle/ALCustomTabBarController" rel="nofollow noreferrer">ALCustomTabBarController</a></li> <li><a href="https://github.com/mhaddl/MHCustomTabBarController" rel="nofollow noreferrer">MHCustomTabBarController</a></li> <li><a href="https://github.com/Marxon13/M13InfiniteTabBar" rel="nofollow noreferrer">M13InfiniteTabBar</a></li> <li><a href="https://github.com/davidmorford/TabBarKit" rel="nofollow noreferrer">TabBarKit</a></li> <li><a href="https://github.com/rnystrom/RNSwipeBar" rel="nofollow noreferrer">RNSwipeBar</a></li> <li><a href="https://github.com/briancollins/BCTabBarController" rel="nofollow noreferrer">BCTabBarController</a></li> <li><a href="https://github.com/boctor/idev-recipes/tree/master/TabBarAnimation" rel="nofollow noreferrer">TabBarAnimation</a></li> <li><a href="https://github.com/brendandixon/ExpandableTabBar" rel="nofollow noreferrer">ExpandableTabBar</a></li> <li><a href="https://github.com/jinthagerman/JBTabBarController" rel="nofollow noreferrer">JBTabBarController</a></li> <li><a href="https://github.com/jasarien/JSScrollableTabBar" rel="nofollow noreferrer">JSScrollableTabBar</a></li> <li><a href="https://github.com/NOUSguide/NGTabBarController" rel="nofollow noreferrer">NGTabBarController</a></li> <li><a href="https://github.com/consumerreports/crtabbar" rel="nofollow noreferrer">crtabbar</a></li> <li><a href="https://github.com/vincentsaluzzo/VSTabBar" rel="nofollow noreferrer">VSTabBar</a></li> <li><a href="https://github.com/Dimillian/DMFilterView" rel="nofollow noreferrer">DMFilterView</a></li> <li><a href="https://github.com/augustjoki/CubeTabBarController" rel="nofollow noreferrer">CubeTabBarController</a></li> <li><a href="https://github.com/futuresimple/FSVerticalTabBarController" rel="nofollow noreferrer">FSVerticalTabBarController</a></li> <li><a href="https://github.com/vicpenap/PrettyKit" rel="nofollow noreferrer">PrettyKit</a></li> </ol>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload