您的位置:首页 > 其它

自定义Tabbar实现push动画隐藏效果

2014-08-05 17:42 585 查看
在之前的一篇文章(链接)中我写到了没有用UITabbarController来实现一个自定义Tabbar,当然功能也简陋了点。注意到在Weico或微信中的自定义tabbar有一个这样的功能:push到下一个页面时tabbar会被自动隐藏,下面我就来说说如何使我前面做的自定义tabbar也能实现隐藏。

如果是原生的tabbar,这个功能实现很容易。在iOS中,每个UIViewController都有一个属性hidesBottomBarWhenPushed,每次push一个viewController时,设置viewController. hidesBottomBarWhenPushed=YES就可以自动实现前面所说的隐藏功能。但是前提是必须使用UITabbarController,我这里实现的自定义tab bar完全没有使用UITabbarController,那就要多费点心。

如果要实现自定义tabbar在每次push viewController时隐藏,很显然我们需要push时有事件能够通知自定义tab bar隐藏。如果你熟悉UINavigationController的push流程的话,应该就知道我们可以让UINavigationController执行 push时调用navigationController: willShowViewController:方法来触发通知,前提是要遵守UINavigationControllerDelegate协议。 由于hidesBottomBarWhenPushed是每个UIViewController都有的属性,我们姑且还是把它用上。代码如下:
Here’s Code

1
2
3
4
5
6
7
8
9
10

- (void)navigationController:(UINavigationController *)navigationController
willShowViewController:(UIViewController *)viewController
animated:(BOOL)animated
{
if (viewController.hidesBottomBarWhenPushed) {
self.tabBar.hidden = YES;
} else {
self.tabBar.hidden = NO;
}
}

这样的实现是比较简单的。对比weico或微信iPhone应用的自定义tab bar push隐藏行为,你就会发现它们有一个自然的过滤动画来实现隐藏,而且与viewController的push动画同步,这是上面的代码做不到的。如果要实现这个动画,就需要对self.tabbar设置frame的过渡动画,代码如下:
Here’s Code

1
2
3
4
5
6
7
8
9
1011
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39

- (void)navigationController:(UINavigationController *)navController willShowViewController:(UIViewController *)viewController animated:(BOOL)animated
{
if (viewController.hidesBottomBarWhenPushed)
{
[self hideTabBar];
}
else
{
[self showTabBar];
}
}

- (void)hideTabBar {
if (!tabBarIsShow)
{ //already hidden
return;
}
[UIView animateWithDuration:0.35
animations:^{
CGRect tabFrame = tabBar.frame;
tabFrame.origin.x = 0 - tabFrame.size.width;
tabBar.frame = tabFrame;
}];
tabBarIsShow = NO;
}

- (void)showTabBar {
if (tabBarIsShow)
{ // already showing
return;
}
[UIView animateWithDuration:0.35
animations:^{
CGRect tabFrame = tabBar.frame;
tabFrame.origin.x = CGRectGetWidth(tabFrame) + CGRectGetMinX(tabFrame);
tabBar.frame = tabFrame;
}];
tabBarIsShow = YES;
}

上面代码中的0.35秒这个时间保证了与tabbar的隐藏动画与viewController的push动画同步,基本上可以实现以假乱真的效果。

代码链接:https://github.com/wonderffee/idev-recipes/tree/master/CustomTabBar

Posted by wonderffee Aug
7th, 2013

原创文章,版权声明:自由转载-非商用-非衍生-保持署名 | Creative Commons BY-NC-ND 3.0

转自:http://wonderffee.github.io/blog/2013/08/07/hide-custom-tab-bar-with-animation-when-push/
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: