iOS滑动tableView来改变导航栏的颜色-1
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iOS滑动tableView来改变导航栏的颜色-1相关的知识,希望对你有一定的参考价值。
-(void)scrollViewDidScroll:(UIScrollView *)scrollView
{
[self.navigationController.navigationBar setBackgroundImage:[self imageWithBgColor:[UIColor colorWithRed:self.tableView.contentOffset.y/255 green:255/255 blue:255/255 alpha:1]] forBarMetrics:UIBarMetricsDefault];
NSLog(@"contentOffset====%f",self.tableView.contentOffset.y);
if (self.tableView.contentOffset.y < 0) {
self.Myview .hidden = YES;
}
}
-(UIImage *)imageWithBgColor:(UIColor *)color {
CGRect rect = CGRectMake(0.0f, 0.0f, 1.0f, 1.0f);
UIGraphicsBeginImageContext(rect.size);
CGContextRef context = UIGraphicsGetCurrentContext();
CGContextSetFillColorWithColor(context, [color CGColor]);
CGContextFillRect(context, rect);
UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
return image;
}
以上是关于iOS滑动tableView来改变导航栏的颜色-1的主要内容,如果未能解决你的问题,请参考以下文章