博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
iOS 自定义Tabbar实现push动画隐藏效果
阅读量:4580 次
发布时间:2019-06-09

本文共 2262 字,大约阅读时间需要 7 分钟。

http://wonderffee.github.io/blog/2013/08/07/hide-custom-tab-bar-with-animation-when-push/

 

在之前的一篇文章()中我写到了没有用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 

123456 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 

123456 7 8 9 10 11 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://www.cnblogs.com/itlover2013/p/5230859.html

你可能感兴趣的文章