美文网首页
ios 导航栏透明设置(11及以下)

ios 导航栏透明设置(11及以下)

作者: 一个七 | 来源:发表于2019-06-20 16:16 被阅读0次
@property (nonatomic,strong)UIImageView * barImageView;

-(void)viewWillAppear:(BOOL)animated{
    [super viewWillAppear:animated];
    if (@available(iOS 11.0, *)) {
        [self.navigationController.navigationBar setBackgroundImage:[[UIImage alloc] init] forBarMetrics:UIBarMetricsDefault];
        [[self.navigationController.navigationBar.subviews objectAtIndex:0] setAlpha:0];
        [self.navigationController.navigationBar setShadowImage:[[UIImage alloc]init]];
    }else{
        self.barImageView = self.navigationController.navigationBar.subviews.firstObject;
        self.barImageView.alpha = 0;
        
    }
    [[self rdv_tabBarController] setTabBarHidden:NO animated:YES];
}

相关文章

网友评论

      本文标题:ios 导航栏透明设置(11及以下)

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