I'm new to iPhone developing. I've tried to create a simple application using UITabBar (not UITabBarController). When my app start there is a login page, and the it will redirect to FilmList page. Here in "FilmList" class only i implemented my code to show the tab bar. In the tab bar there is four UITabBarItem that is "Home", "Map", "setting", "about us". When i click the home button "FilmList" class will loaded and "MapList" class for Map "Settings" for setting "about us" for about us.
My code is working only every this is working. But When i select the home button its not showing as selected like others (all other items are get fade when it is selected. Check the screen shot of my simulator.
![This is my home tab (but user couldn't understand which one selected) ][2] ![This is my map tab, here the selected view is faded][3]
- (void)tabBar:(UITabBar *)tabBar didSelectItem:(UITabBarItem *)item{
NSLog(@"Tabbar selected itm %d",item.tag);
//[tabBar setSelectedItem:[tabBar.items objectAtIndex:item.tag]];
switch (item.tag) {
case 0:
{
item.enabled = false;
//[tabbarcontroller setSelectedItem:nil];
//first selected
NSLog(@"tab bar selected");
FilmList *list = [[FilmList alloc]initWithNibName:@"FilmList" bundle:nil];
[tabbarcontroller setSelectedItem:[tabbarcontroller.items objectAtIndex:0]];
[self.navigationController pushViewController:list animated:NO];
}
break;
case 1:
//second selected
{
TheatersOnMap *thonmap = [[TheatersOnMap alloc]initWithNibName:@"TheatersOnMap" bundle:Nil];
thonmap.res =resarray;
thonmap.latitude = lat;
thonmap.longitude = lon;
[self.navigationController pushViewController:thonmap animated:NO];
}
break;
case 2:
//third selected
{
LocationList *LL = [[LocationList alloc]initWithNibName:@"LocationList" bundle:Nil];
[self.navigationController pushViewController:LL animated:NO];
}
break;
case 3:
//fourth selected
{
Settings *stgs = [[Settings alloc]initWithNibName:@"Settings" bundle:Nil];
[self.navigationController pushViewController:stgs animated:NO];
}
break;
default:
break;
}
}
-(BOOL)tabBar:(UITabBar*)tabBarController shouldSelectViewController:(UIViewController *)viewController {
if (tabbarcontroller.selectedItem.tag ==0) {
return NO;
}
NSLog(@"printing");
return YES;
}
tabbarcontrollerif you are not using UITabBarController and why you have both UITabBarDelegate and UITabBarControllerDelegate methods. Also the line ` item.enabled = false;` disables the selected tab bar item leaving it highlighted and grayed-out in the same time until you select another item, then it is only grayed-out and it's not possible to select it again. – A-Live Sep 18 '12 at 6:51