In XCode 4, how do you change the number of tabs in a UiTabBarViewController?

1.2k Views Asked by At

I've been looking at this new interface for a while now and I can't figure out how to add or remove tabs from the tab bar.

Any help would be appreciated.

5

There are 5 best solutions below

0
On BEST ANSWER

There are two possibilities:

1 - Open your xib-file inside Xcode. Show the right sidebar (Navigator | Utility). At the bottom of this bar should be all Interface Builder objects (i.e. UITabBarItem, UILabel, ...). Now drag a UITabBarItem to your View. If you don't see these objects: At the bottom is a small cube. press it and you'll see it.

2 - Right-click on your file and open in external editor. This opens Interface Builder. If it won't work you can open your file directly with the Interface Builder.

4
On

You ask this question in the Apple Developer Forums where you can talk about confidential information (read: NDA software). Xcode4 is not yet available for public consumption, therefore it's still under NDA.

0
On

Assuming that your Tab Bar was created in XCode (which it should be if you created a Tab Bar project) click on your Main Window.xib to view it.

Click the disclosure indicator to see the hierarchy of objects (if it isn't that way already). It should look something like this:

enter image description here

The number of view controllers that you have underneath it is the number of tabs you have. In this case the view controller is a Navigation Controller, and the View Controllers are children of it.

0
On

If u r using Story board ......... Just do this ... and i am telling for Xcode 4.3

just add view controller from the libirary you can add as much as you like.. then link those views with your main view controller... as you will link with it .... it will automatically pop up relationship with main controller and thus a tap will be added automatically in your main controller... you can visit this link .... "http://www.youtube.com/watch?v=qvvJzkJcsew"

0
On

I also work around on find out how to set the tabitem in Xcode4, I found you just drag the controller to the tabitems, the select the uiview of this tab item and set it's class. Xcode on longer support set tab item at the inspect panel.