Created
April 5, 2017 19:59
-
-
Save ruichuang/03d7ce2c126648ca1a166451790deaa3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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