Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6252915
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T13:53:40+00:00 2026-05-24T13:53:40+00:00

I have UITabBarController with 5 tabs, how can I set tabs titles while launching

  • 0

I have UITabBarController with 5 tabs, how can I set tabs titles while launching the application? The reason behind this is because I want to display tabs titles based on system language (English or Spanish for example)

Regards

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-24T13:53:42+00:00Added an answer on May 24, 2026 at 1:53 pm

    Setting the tabbar’s titles is pretty easy:

    This sets up a tabbarcontroller programmatically in your app delegate’s applicationDidFinishLaunching method. It is assumed you have all viewcontrollers put in the viewControllers array. You may skip that section, if you have set up your tabbarcontroller via ib.

    UITabBarController *tabBarController = [[[UITabBarController alloc] init] retain];
    tabBarController.delegate = self;
    [tabBarController setViewControllers:viewControllers animated:NO];
    tabBarController.selectedIndex = 0;
    

    You may set the titles by:

    [[tabBarController.tabBar.items objectAtIndex:0] setTitle:@"title A"];
    [[tabBarController.tabBar.items objectAtIndex:1] setTitle:@"title B"];
    [[tabBarController.tabBar.items objectAtIndex:2] setTitle:@"title C"];
    

    When it comes to multilingual projects, have a look here. Put all your localized strings into plist files and start with iOS’ localization methods. Once started, it is very handy.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an UITabBarController with two tabs: UINavigationController OptionsViewController : UIViewController How can I
I have an application that has a UITabBarController with two tabs, each having its
I have a UITabbar having 5 tabs like this Now I want to hide
I have a UITabbarController set by the Interfacebuilder. The tabbarcontroller has 5 tabs, the
I have a UITabBarController with a set of tabs. Some of them, when selected,
My application uses UITabBarController with 4 tabs. Each tab will have a UIWebView along
I have a custom UIViewController in a UITabbarController and want to respond to rotation
I have a UITabBarController which is switching between tabs just fine. The only issue
I have a UITabBarController. One of the tab shows application bookmarks, these bookmarks are
I have a UITabBarController as part of my app delegate and I want to

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.