Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am new to ios. I want make app in tab bar

The tab bar colors now in this scren shot.



An the UI i want in my iphone is this image

IN each of icon of tab bar i used black images

Thanks in Advance

share|improve this question
What is the problem? – Dan F Feb 4 at 15:05
@DanF U can see tha change in color in Tab Bar – user1162056 Feb 4 at 15:35

2 Answers

up vote 0 down vote accepted

In your didFinishLaunchingWithOptions method in the app delegate you will need to add some code like this.

//Get the Tab Bar
UITabBarController *tabBarController = (UITabBarController *)self.window.rootViewController;
tabBarController.delegate = self;
UITabBar *tabBar = tabBarController.tabBar;

//You may want to set the background of the tab bar (optional)
[tabBar setBackgroundImage:[UIImage imageNamed:@"CustomTabBar.png"]];

//You will need to repeat this code for each tab bar item
UITabBarItem *tabBarItem3 = [tabBar.items objectAtIndex:2];
tabBarItem3.title = @"Settings";
tabBarItem3.image = nil;
[tabBarItem3 setFinishedSelectedImage:[UIImage imageNamed:@"settings-button-selected.png"] withFinishedUnselectedImage:[UIImage imageNamed:@"settings-button.png"]];

Don't forget to make @2x images for retina support.

You can also change other settings for each tabBarItem - check out the docs to find out more.

share|improve this answer

You have to set each of your UITabBarItems separately using something like:

UITabBarItem *tabBarItem1 = [[UITabBarItem alloc] initWithTitle:@"Title1" image:[UIImage imageNamed:@"image1.png"] tag:1];
[tabBarItem1 setFinishedSelectedImage:nil withFinishedUnselectedImage:[UIImage imageNamed:@"image1.png"]];
[[myTabBarController.viewControllers objectAtIndex:0] setTabBarItem:tabBarItem1];

for each of your view controllers.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.