0

在搜索了 StackOverflow 上的几个问题后,我发现只有 1 个用于创建自定义 UITabBar 的主要项目称为BCTabBarController. 它的描述说:

使用标准的 UITabBarController 有几个问题,包括:

它太高了,尤其是在横向模式下

高度与 UIToolbar 不匹配

不使用私有 API 无法自定义

尽管如此,我在 GitHub 上找到了这个奇怪的项目,这里的教程UITabBarController在其实现中使用标准,UIButtons每个选项卡都在工作(很奇怪,但确实如此)。

我想知道,如果UITabBarController使用UIButtons而不是选项卡创建自定义是错误的,它会导致什么结果?这个的实现看起来像这样:

- (void)viewDidAppear:(BOOL)animated {
    [super viewWillAppear:animated];

    [self hideTabBar];
    [self addCustomElements];
}

- (void)hideTabBar
{
    for(UIView *view in self.view.subviews)
    {
        if([view isKindOfClass:[UITabBar class]])
        {
            view.hidden = YES;
            break;
        }
    }
}

-(void)addCustomElements
{
    // Initialise our two images
    UIImage *btnImage = [UIImage imageNamed:@"NavBar_01.png"];
    UIImage *btnImageSelected = [UIImage imageNamed:@"NavBar_01_s.png"];

    self.btn1 = [UIButton buttonWithType:UIButtonTypeCustom]; //Setup the button
    btn1.frame = CGRectMake(0, 430, 80, 50); // Set the frame (size and position) of the button)
    [btn1 setBackgroundImage:btnImage forState:UIControlStateNormal]; // Set the image for the normal state of the button
    [btn1 setBackgroundImage:btnImageSelected forState:UIControlStateSelected]; // Set the image for the selected state of the button
    btn1.backgroundColor = [UIColor yellowColor];
    [btn1 setTag:0]; // Assign the button a "tag" so when our "click" event is called we know which button was pressed.
    [btn1 setSelected:true]; // Set this button as selected (we will select the others to false as we only want Tab 1 to be selected initially

在我的项目中,我将使用 iOS 5.1 及更高版本,并且不使用 Storyboard 或 XIB。谢谢!

4

1 回答 1

1

从 iOS 5.0 开始,使用屏幕底部的UITabBarController一行创建自己的不再是问题。UIButtons

在以前的 iOS SDK 版本中,这有点冒险,因为您必须自己管理viewWill/viewDid方法的转发。

查看UIViewControllerClass Reference,Implementing a Container View Controller部分,您会在那里找到所需的一切:UIViewController Class Reference

还有一篇专题文章准确解释了您的需求:创建自定义容器视图控制器

希望这会有所帮助,

于 2013-03-04T13:20:56.867 回答