美文网首页
创建纯色的navigationbar

创建纯色的navigationbar

作者: lixiaoshuai | 来源:发表于2016-05-19 16:10 被阅读19次

    问题如题

    代码如下

    UIImage * image = [UIImage imageWithColor:[UIColor GreenColor]];

    [self.navigationController.navigationBar setBackImage:image forBarMetrics:UIBarMetricsDefault];

    - (UIImage*)imageWithColor:(UIColor*)color{

    CGRect rect = CGRectMake(0,0,1,1);

    UIGraghicsBeginImageContext(rect.size);

    CGContextRef content = UIGraphicsGetCurrentContext();

    CGContentSetColorWithColor(context,[color CGColor]);

    CGContentFillRect(context,rect);

    UIImage * image = UIGraphicsGetImageFromCurrentImageContext;

    UIGraphicsEndImageContext();

    Return image;

    }

    相关文章

      网友评论

          本文标题:创建纯色的navigationbar

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