美文网首页
iOS-(修改导航栏的颜色)-----色值转化为图片

iOS-(修改导航栏的颜色)-----色值转化为图片

作者: 亦晴工作室 | 来源:发表于2016-08-25 11:14 被阅读42次
+(UIImage *)buttonImageFromColor:(UIColor *)color{

    CGRect rect = CGRectMake(0, 0, 2, 2);
    UIGraphicsBeginImageContext(rect.size);
    CGContextRef context = UIGraphicsGetCurrentContext();
    CGContextSetFillColorWithColor(context, [color CGColor]);
    CGContextFillRect(context, rect);
    UIImage *img = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext(); return img;
}

相关文章

网友评论

      本文标题:iOS-(修改导航栏的颜色)-----色值转化为图片

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