Navigation的一些设置

2017-09-15  本文已影响0人  金约21依代

1、去掉navigationBar下面的一条黑线

核心代码

[self.navigationController.navigationBar setBackgroundImage:[UIImage imageNamed:@"head_bar_pink_.png"] forBarMetrics:UIBarMetricsDefault];

[self.navigationController.navigationBar setShadowImage:[self createImageWithColor:[UIColor clearColor]]];

这里使用的颜色值创建的图片

- (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;

}
上一篇 下一篇

猜你喜欢

热点阅读