在搜索了 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。谢谢!