UINavigationBar全透明
作者:
Fintecher | 来源:发表于
2017-02-13 16:43 被阅读81次- (void)transparentNavigationBar {
UINavigationBar*bar = self.navigationController.navigationBar;
bar.translucent = YES;
UIColor*color = [UIColor clearColor];
CGRectrect = CGRectMake(0, 0,ScreenWidth, 64);
UIGraphicsBeginImageContext(rect.size);
CGContextRefcontext = UIGraphicsGetCurrentContext();
CGContextSetFillColorWithColor(context, [colorCGColor]);
CGContextFillRect(context, rect);
UIImage*image = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
[bar setBackgroundImage:imageforBarMetrics:UIBarMetricsDefault];
}
本文标题:UINavigationBar全透明
本文链接:https://www.haomeiwen.com/subject/qpktwttx.html
网友评论