问题:
iOS 11更新后很多盆友的导航栏透明度设置都失效了。在iOS11之前很多常见的用法是
_barImageView = self.navigationController.navigationBar.subviews.firstObject.alpha;
获取这个子视图之后直接修改它的透明度,然后再监听的方法中:
-(void)scrollViewDidScroll:(UIScrollView *)scrollView{
CGFloat minAlphaOffset = 0;
CGFloat maxAlphaOffset = 200;
CGFloat offset = scrollView.contentOffset.y;
CGFloat alpha = (offset - minAlphaOffset) / (maxAlphaOffset - minAlphaOffset);
NSLog(@"%f",alpha);
_barImageView.alpha = alpha;
}
在iOS11之后,由于导航栏的结构改变,导致了导航栏视图的层级会有所改变。这样的设置虽然能生效,但是我们的需求是在当前界面被Push出来的时候,此时偏移量是0,所以要求导航栏的透明度是0,随着便宜量变大,让导航栏的透明度逐渐增加。
此种方法,会发现当前界面push出来之后,默认的导航栏透明度还是在的,不是透明的状态,即便我们在
-(void)viewWillAppear:(BOOL)animated 方法中设置_barImageView.alpha = 0 也不会生效。通过断点你会发现,在-(void)viewDidAppear:(BOOL)animated 方法中,_barImageView.alpha 又被赋值等于了1,并且当前界面在滚动到alpha=0.5时push到其他界面之后,再pop回当前界,会出现同样的问题,当前界面导航栏的透明度也会先被赋值为1.
解决办法
实际上无论导航栏层级如何变化,我们只需要知道navigationBar有个方法setBackgroundImage可以设置导航栏背景图,我们可以通过设置背景图的透明度来改变导航栏的透明度。
1.添加记录偏移量的成员变量
@property (nonatomic , assign) CGFloat offset;
2.在viewWillAppear方法中设置navigationBar的
-(void)viewWillAppear:(BOOL)animated{
[super viewWillAppear:animated];
//根据上次保存的偏移量生成相对应透明度的图片并赋值给navigationBar.setBackgroundImage
[self.navigationController.navigationBar
setBackgroundImage:[self createImageWithColor:[UIColor colorWithRed:38/255.0 green:137/255.0 blue:247/255.0 alpha:(_offset / 64)>0.99?0.99:(_offset / 64)]] forBarMetrics:UIBarMetricsDefault];
[self.navigationController.navigationBar
setShadowImage:[UIImage new]]; //取消navigationBar的分割线
}
3.在scrollViewDidScroll方法中,根据偏移量进行赋值。
-(void)scrollViewDidScroll:(UIScrollView *)scrollView{
_offset = scrollView.contentOffset.y;//38,137,247
[self.navigationController.navigationBar
setBackgroundImage:[self createImageWithColor:[UIColor colorWithRed:38/255.0 green:137/255.0 blue:247/255.0 alpha:(_offset / 64)>0.99?0.99:(_offset / 64)]] forBarMetrics:UIBarMetricsDefault];
[self.navigationController.navigationBar
setShadowImage:[UIImage new]];
}
4.在viewWillDisappear方法中取消对navigationBar.setBackgroundImage的图片的设置,恢复其他界面navigationBar的样子。
[self.navigationController.navigationBar setBackgroundImage:nil forBarMetrics:UIBarMetricsDefault];
[self.navigationController.navigationBar setShadowImage:nil];
好了,这样就能达到我们想要的效果了。如果你想让滚动到某个便宜量的时候,修改导航栏的字体颜色和状态栏的颜色为白色,还可以在scrollViewDidScroll:(UIScrollView *)scrollView方法中加上:
if (_offset > 136) {
[UIApplication sharedApplication].statusBarStyle = UIStatusBarStyleLightContent;
//标题颜色
self.navigationController.navigationBar.titleTextAttributes = @{NSForegroundColorAttributeName : [UIColor whiteColor]};
//导航栏子控件颜色
self.navigationController.navigationBar.tintColor = [UIColor whiteColor];
}else{
[UIApplication sharedApplication].statusBarStyle = UIStatusBarStyleDefault;
//标题颜色
self.navigationController.navigationBar.titleTextAttributes = @{NSForegroundColorAttributeName : [UIColor blackColor]};
//导航栏子控件颜色
self.navigationController.navigationBar.tintColor = [UIColor blackColor];
}
但是注意如果想让 [UIApplication sharedApplication].statusBarStyle = UIStatusBarStyleLightContent 此设置生效,必须修改info.plist中的View controller-based status bar appearance 为NO,才可以的。
另外,需要在viewWillAppear 和 viewWillDisappear 方法中对 导航栏的字体颜色和状态栏的颜色进行修改或者回复才能保证在 push 或者 pop的时候不会影响到其他界面。
作者:又是一个程序猿
欢迎大家讨论分享
转载请注明出处
网友评论