美文网首页
ios更改导航条颜色

ios更改导航条颜色

作者: 滴滴滴开门 | 来源:发表于2023-04-16 09:47 被阅读0次
[self.navigationController setNavigationBarHidden:NO animated:animated];
[self.navigationController.navigationBar setBackgroundImage:[UIImage createImageWithColor:[UIColor colorWithHexString:@"#F6F7F9"]] forBarMetrics:UIBarMetricsDefault];

if (@available(iOS 13.0, *)) {
    UINavigationBarAppearance *appearance = [[UINavigationBarAppearance alloc] init];
    appearance.backgroundColor = [UIColor colorWithHexString:@"#F6F7F9"]; //背景色
    appearance.shadowColor = UIColor.clearColor; //阴影
    self.navigationController.navigationBar.standardAppearance = appearance;
    self.navigationController.navigationBar.scrollEdgeAppearance = appearance;
}
  • (UIImage )createImageWithColor:(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 *theImage = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();
    return theImage;
    }

相关文章

网友评论

      本文标题:ios更改导航条颜色

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