我正在使用 Tito 的代码片段向我的标签栏添加自定义按钮: https ://github.com/tciuro/CustomTabBar
(继承 UITabbarController 并使用添加自定义按钮
// .. created a UIButton *button
[self.view addSubview:button];
)
这适用于我的基于故事板的应用程序,除了导航控制器中的子视图启用了“在推送时隐藏底栏”选项的情况。这会按承诺隐藏标签栏,但不会隐藏自定义按钮。似乎按钮应该作为子视图添加到标签栏本身?我尝试了这个丑陋的代码,它甚至没有让按钮出现:
for(UIView *view in self.view.subviews)
{
if([view isKindOfClass:[UITabBar class]])
{
[view addSubview:button];
break;
}
}
有任何想法吗?
更新: 我的解决方案:在我的 ApplicationDelegate 中,我定义了以下方法,只要需要,我就会在 viewWillAppear 或 viewWillDisappear 方法中调用它们:
-(void)hideCenterButton:(BOOL)animated
{
if(animated){
[UIView animateWithDuration:0.3
delay:0.0f
options:UIViewAnimationCurveLinear
animations:^{
CGRect frame = self.centerButton.frame;
frame.origin.x = -100;
self.centerButton.frame = frame;
}
completion:^(BOOL finished){
}];
}
}
-(void)showCenterButton:(BOOL)animated
{
if(animated){
[UIView animateWithDuration:0.35
delay:0.0f
options:UIViewAnimationCurveLinear
animations:^{
CGRect frame = self.centerButton.frame;
frame.origin.x = (self.view.superview.frame.size.width / 2) - (self.centerButton.frame.size.width / 2);
self.centerButton.frame = frame;
}
completion:^(BOOL finished){
}];
}
}
我必须将动画的持续时间设置为 0.35 秒才能获得与标签栏一致的平滑效果。