iOS UINavigationBar vs UIToolbar vs UITabBar

前端 未结 4 977
梦谈多话
梦谈多话 2021-02-02 11:22

Let me know which one should be used in what case.

What are differences among them?

What are the advantage and disadvantage of each component?

相关标签:
4条回答
  • 2021-02-02 11:34

    The UINavigationBar class implements a control for navigating hierarchical content. It’s a bar, typically displayed at the top of the screen, containing buttons for navigating up and down a hierarchy. The primary properties are a left (back) button, a center title, and an optional right button.

    An instance of the UIToolbar class is a control for selecting one of many buttons, called toolbar items. A toolbar momentarily highlights or does not change the appearance of an item when tapped. Use the UITabBar class if you need a radio button style control.

    The UITabBar class implements a control for selecting one of two or more buttons, called items. The most common use of a tab bar is to implement a modal interface where tapping an item changes the selection.

    0 讨论(0)
  • 2021-02-02 11:38

    To quote big brother:

    Tabbar

    If your application provides different perspectives on the same set of data, or different subtasks related to the overall function of the application, you might want to use a tab bar. A tab bar appears at the bottom edge of the screen.

    A tab bar gives users the ability to switch among different modes or views in an application, and users should be able to access these modes from everywhere in the application

    Toolbar

    If your application provides a number of actions users can take in the current context, it might be appropriate to provide a toolbar

    However that doesn't give you a completely clear application-based decision. The best solution is to look at the iPhone inbuilt applications (Clock and iPod) along with Appstore-approved apps and stick to what is consistent, as that is what the Apple HIG guides and the appstore approval process boils down to.

    0 讨论(0)
  • 2021-02-02 11:39

    As of June 2018, the Human Interface Guidelines (HIG) include the most current expectations for iOS, macOS, watchOS, and tvOS, including links to details for developers.

    For iOS, the guideline summaries are:

    Navigation Bars:

    A navigation bar appears at the top of an app screen, below the status bar, and enables navigation through a series of hierarchical screens.

    Toolbars:

    A toolbar appears at the bottom of an app screen and contains buttons for performing actions relevant to the current view or content within it.

    Tab Bars:

    A tab bar appears at the bottom of an app screen and provides the ability to quickly switch between different sections of an app.

    As far as advantages and disadvantages of each, one important aspect is whether you want the bar to appear at the top or bottom of a view. Navigation bars are supposed to appear at the top, while toolbars and tab bars are expected to appear at the bottom of the view.

    Another is whether you want navigation functionality vs actions/tasks related to a view. Navigation Bars implement a button to return to the previous view in the stack, tab bars provide a more abrupt change (such as switching from an alarm view to a timer view, say), and toolbars are really intended for actions (such as sharing, say) rather than actual "navigation".


    Note:
    If you come here and find that any of the links are broken, just search on "Human Interface Guidelines" to find the current documentation.

    0 讨论(0)
  • 2021-02-02 11:46

    You should take a look at the Mobile HIG (Human Interface Guidelines) for these questions.

    0 讨论(0)
提交回复
热议问题