Skip to content

Instantly share code, notes, and snippets.

@ruichuang
Created April 5, 2017 19:59
Show Gist options
  • Select an option

  • Save ruichuang/03d7ce2c126648ca1a166451790deaa3 to your computer and use it in GitHub Desktop.

Select an option

Save ruichuang/03d7ce2c126648ca1a166451790deaa3 to your computer and use it in GitHub Desktop.
func imageWithColor(color: UIColor) -> UIImage {
let rect = CGRect(x: 0, y: 0, width: 1, height:1)
UIGraphicsBeginImageContext(rect.size)
let context = UIGraphicsGetCurrentContext()
context!.setFillColor(color.cgColor)
context!.fill(rect)
let image = UIGraphicsGetImageFromCurrentImageContext()
UIGraphicsEndImageContext()
return image!
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment