A control that displays one or more buttons in a tab bar for selecting between different subtasks, views, or modes in an app.
SDKs
- iOS 2.0+
- Mac Catalyst 13.0+
- tvOS 9.0+
Framework
- UIKit
Declaration
class UITabBar : UIView
Overview
Typically, you use tab bars in conjunction with a UITab
object, but you can also use them as standalone controls in your app. Tab bars always appear across the bottom edge of the screen and display the contents of one or more UITab
objects. A tab bar’s appearance can be customized with a background image or tint color to suit the needs of your interface. Tapping an item selects and highlights that item, and you use the selection of the item to enable the corresponding mode for your app.
You can configure tab bars programmatically or in Interface Builder. A UITab
object provides its own tab bar object and you must configure the object provided to you. When creating a tab bar programmatically, use the init(frame:)
method or another view initializer method to set its initial configuration. Use the methods of this class to configure the appearance of the tab bar. For tab bars you create yourself, you also use the methods of this class to specify the items displayed by the tab bar.
Note
The UITab
class and UIToolbar
classes have similar appearances but different purposes. Use tab bars to convey and change your app’s mode. Use toolbars to present the user with a set of actions that are relevant to the currently presented content. For more information on when to use both tab bars and toolbars, see iOS Human Interface Guidelines.
A tab bar reports selections and user customizations to its delegate object. For tab bars you create yourself, use the delegate to respond to selections or to the addition, removal, or reordering of items in the tab bar. (A UITab
object acts as the delegate for the tab bar it manages.) For more information on implementing a tab bar delegate, see UITab
.
Configuring the Items of a Tab Bar
You can configure tab bar items using Interface Builder or create and configure them programmatically in your code. Tab bars in Interface Builder come preconfigured with some initial items and you can add, remove, or reorder items as needed. How you configure items at design time depends on whether your tab bar is associated with a UITab
object:
Configuring your tab bar in Interface Builder:
When a
UITab
object is present, add or remove view controllers to your scene and create relationship segues between the tab bar controller and each new view controller. Creating a relationship segue automatically adds a new item to the tab bar, and deleting an existing relationship segue removes the corresponding tab bar item.Bar Controller When a tab bar controller is not present, drag tab bar items from the library onto your tab bar.
Configuring your tab bar programmatically:
To configure the tab bar associated with a
UITab
object, configure the view controllers associated with the tab bar controller. The tab bar automatically obtains its items from theBar Controller tab
property of each view controller associated with the tab bar controller.Bar Item To configure tab bar items directly, use the
set
method of the tab bar itself.Items(_: animated:)
A tab bar displays all of its tabs onscreen at once, using the item
property to determine how to position items in the available space. If you have more items than can fit in the available space, display only a subset of them and let the user select which tabs are displayed. The begin
method displays an interface for selecting which tab bar items to display.
The contents of each item are stored in a UITab
object. Each item contains a title and an image to display in the tab. You can also use tab bar items to add a badge to the corresponding tab. For more information about creating and configuring items, see UITab
.
Responding to Tab Selections
For tab bars with an associated tab bar controller, the tab bar controller automatically manages selections and displays the appropriate view controller. The only time you have to manage selections yourself is when you create the tab bar without a tab bar controller. The tab bar reports selections to the tab
method of its delegate
object, which you can use to respond to selection changes. For more information about implementing the delegate object, see UITab
.
Interface Builder Attributes
Table 1 lists the attributes that you configure for tab bars in Interface Builder.
Tab bar attributes
Attribute | Discussion |
---|---|
Background | The background image to display for the bar. If you specify a stretchable image, the image is stretched to fit the available space; otherwise, the image is tiled. When you configure a background image, the tab bar ignores the tint color information. To set this attribute programmatically, use the |
Shadow | The custom shadow image for the tab bar. This attribute is ignored if the tab bar does not also have a custom background image. To set this attribute programmatically, use the |
Selection | The image to use for the selected tab. To set this attribute programmatically, use the |
Image Tint | The tint color to apply to the selected item. To set this attribute programmatically, use the |
Style | The basic style to apply to the bar. You can configure a tab bar with a dark or light style and the bar can be opaque or translucent. To set the style programmatically, use the |
Bar Tint | The tint color to apply to the bar. To set this attribute programmatically, use the |
Item Positioning | The positioning scheme to apply to items. Use this attribute to configure how items are spaced across the length of the tab bar. To set this attribute programmatically, use the |
Internationalization
To internationalize a tab bar, you must provide localized strings for the tab bar item titles.
For more information, see Internationalization and Localization Guide.
Accessibility
Tab bars are accessible by default.
With VoiceOver enabled on an iOS device, when a user touches a tab in a tab bar, VoiceOver reads the title of the tab, its position in the bar, and whether it is selected. For example in the iTunes app on iPad, you might hear “Selected, Audiobooks, four of seven” or “Genius, six of seven.”
For general information about making your interface accessible, see Accessibility Programming Guide for iOS.