1

我正在使用UITabBar3 个标签栏项目。我想自定义中心选项卡项目。像凸起的标签栏按钮。

我知道如何添加UITabBarController和自定义它。但我想自定义UITabBar.

我想将自定义按钮添加到标签栏作为中心标签栏项目,如下所示:

在此处输入图像描述

4

2 回答 2

1

检查这个http://idevrecipes.com/2010/12/16/raised-center-tab-bar-button/

UIButton* button = [UIButton buttonWithType:UIButtonTypeCustom];
    button.frame = CGRectMake(0.0, 0.0, buttonImage.size.width, buttonImage.size.height);
    [button setBackgroundImage:buttonImage forState:UIControlStateNormal];
    [button setBackgroundImage:highlightImage forState:UIControlStateHighlighted];

    CGFloat heightDifference = buttonImage.size.height - self.tabBar.frame.size.height;
    if (heightDifference < 0)
      button.center = self.tabBar.center;
    else
    {
      CGPoint center = self.tabBar.center;
      center.y = center.y - heightDifference/2.0;
      button.center = center;
    }

    [self.view addSubview:button];
于 2012-08-21T13:12:56.043 回答
0

你可以改变

  backgroundImage  property
  selectedImageTintColor  property
  selectionIndicatorImage  property
  tintColor  property

一个 uitabbar 的

也许您可以使用背景图像来实现。如果没有,那么您必须编写自己的标签栏。

于 2012-08-21T12:29:39.127 回答