0

我正在使用自定义标签栏图像,中间标签也是自定义图像(很像旧版本的 Instagram)。

这是我的一些代码:

UITabBarController *tabBarController = (UITabBarController *)self.window.rootViewController;
    UITabBar *tabBar = tabBarController.tabBar;

    [tabBar setBackgroundImage:[UIImage imageNamed:@"CustomTabBar.png"]];

    UITabBarItem *tabBarItem3 = [tabBar.items objectAtIndex:2];
    tabBarItem3.title = nil;
    tabBarItem3.image = nil;
    [tabBarItem3 setFinishedSelectedImage:[UIImage imageNamed:@"tab-button-selected.png"] withFinishedUnselectedImage:[UIImage imageNamed:@"tab-button.png"]];

这很好用,但我有一个无法解决的问题。默认情况下,所选选项卡具有浅灰色背景。这是我想保留的效果,但不适用于中间标签。中间的选项卡是一个较大的圆形图像,当它被选中时会发生变化,但仍然会出现灰色背景。

有没有办法删除这个,[tabBar setSelectionIndicatorImage:[[UIImage alloc] init]];但仅限于该选项卡。或者,在应用程序委托中,检测选项卡中的更改并将其删除?

4

2 回答 2

6

好的,所以事实证明,在这些情况下,午餐时间散步真的很有帮助。这是我对其他有类似问题的人的回答。

我首先包含<UITabBarControllerDelegate>在我的应用程序委托的 .h 中。在didFinishLaunchingWithOptions方法中我设置了标签栏的委托:

UITabBarController *tabBarController = (UITabBarController *)self.window.rootViewController;
tabBarController.delegate = self;

然后我可以使用这个方法来切换是否显示背景图像:

- (void)tabBarController:(UITabBarController *)tabBarController didSelectViewController:(UIViewController *)viewController {
    UITabBar *tabBar = tabBarController.tabBar;
    if (tabBar.selectedItem == [tabBar.items objectAtIndex:2]) {
        [tabBar setSelectionIndicatorImage:[[UIImage alloc] init]];
    }
    else {
        [tabBar setSelectionIndicatorImage:nil];
    }
}
于 2013-01-30T14:58:29.507 回答
0

我已经尝试在我的代码中实现这一点。但是,我在情节提要中制作了原始标签栏,当我在我的应用程序委托中添加标签栏时,它似乎没有被覆盖。我想知道我该怎么做呢?

我可以像这样覆盖标签栏项目

//create new tab bar appearance
UITabBar *tabBar = [UITabBar appearance];
//set background image
[tabBar setBackgroundImage:[UIImage imageNamed:@"menu.png"]];
//create a colour and apply it as tint colour when items aren't selected.
UIColor *color=[UIColor colorWithRed:64.0/255.0 green:147.0/255.0 blue:52.0/255.0 alpha:255.0];
UIColor *colorSelected=[UIColor colorWithRed:1.0 green:1.0 blue:1.0 alpha:1.0];
[tabBar setTintColor:color];
[tabBar setSelectedImageTintColor:colorSelected];

[tabBar setSelectionIndicatorImage:[UIImage imageNamed:@"selection-tab.png"]];

所有这些都在 didfinishloadingwithoptions 中

于 2013-02-26T16:51:05.697 回答