美文网首页
iOS push&pop导航栏颜色渐变(UIViewContro

iOS push&pop导航栏颜色渐变(UIViewContro

作者: 师从小马哥 | 来源:发表于2017-06-13 15:38 被阅读0次

核心方法就是UIViewControllerTransitionCoordinator(控制器过渡协调器)

只需要在各个控制器中的viewWillAppear方法中添加以下代码即可:

- (void)viewWillAppear:(BOOL)animated
{
    [super viewWillAppear:animated];
    
    self.navigationController.navigationBar.barTintColor = [UIColor dd_hexStringToColor:@"EA1861"];

    [self.transitionCoordinator animateAlongsideTransition:^(id<UIViewControllerTransitionCoordinatorContext>  _Nonnull context) {
        self.navigationController.navigationBar.barTintColor = [UIColor dd_hexStringToColor:@"EA1861"];  
    } completion:^(id<UIViewControllerTransitionCoordinatorContext>  _Nonnull context) {
    }];
}

相关文章

网友评论

      本文标题:iOS push&pop导航栏颜色渐变(UIViewContro

      本文链接:https://www.haomeiwen.com/subject/vewdqxtx.html