Skip to content

Instantly share code, notes, and snippets.

@TheFinestArtist
Last active August 29, 2015 14:25
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save TheFinestArtist/60fc5142c3d56948e749 to your computer and use it in GitHub Desktop.
Save TheFinestArtist/60fc5142c3d56948e749 to your computer and use it in GitHub Desktop.
UIImage+Custom
//
// UIImage+Custom.h
//
// Created by TheFinestArtist
//
#import <Foundation/Foundation.h>
@interface UIImage (Custom)
+ (UIImage *)imageWithColor:(UIColor *)color;
@end
//
// UIImage+Custom.m
//
// Created by TheFinestArtist
//
#import "UIImage+Custom.h"
@implementation UIImage (Custom)
+ (UIImage *)imageWithColor:(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 *image = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
return image;
}
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment