I am using UITabbar because I like the Icon design. But I don't use UIButtons. I have two icon buttons and one label.
I've delegate method this. My NSLog won't appear if click first icon and second icon. I have this code appear warnings Xcode. How do you fix this?
- (void)tabBar:(UITabBar *)tabBar didSelectItem:(UITabBarItem *)item {
if ([viewController.tabBarItem.title isEqualToString:@"FIRST"])
{
label.hidden = YES;
NSLog(@"FIRST");
} else if ([viewController.tabBarItem.title isEqualToString:@"SECOND"])
{
label.hidden = NO;
NSLog(@"SECOND");
}
}
viewController?self.tabBarItem.titledoesn't work? – Kjuly Dec 17 '11 at 3:58