Search code examples
iosxcode4

Is it possible to create a new row of tabs in xcode?


I'd like a new row of tabs just below the existing row. Is this possible in xcode?


Solution

  • You can't do it with the standard UITabBar. You would have to build your own solution with UIViews. I agree with Keller, its a bad design idea - I think it would use up too much screen space. Perhaps have a Table View with all the tabs as rows and drill down into your views instead?