Last active
          April 14, 2023 18:25 
        
      - 
      
 - 
        
Save cristianca/431cdeb39bc53a979a4e to your computer and use it in GitHub Desktop.  
    Create a gradient UIColor from an array of colors. 
  
        
  
    
      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 colorWithGradient(frame: CGRect, colors: [UIColor]) -> UIColor { | |
| // create the background layer that will hold the gradient | |
| let backgroundGradientLayer = CAGradientLayer() | |
| backgroundGradientLayer.frame = frame | |
| // we create an array of CG colors from out UIColor array | |
| let cgColors = colors.map({$0.CGColor}) | |
| backgroundGradientLayer.colors = cgColors | |
| UIGraphicsBeginImageContext(backgroundGradientLayer.bounds.size) | |
| backgroundGradientLayer.renderInContext(UIGraphicsGetCurrentContext()) | |
| let backgroundColorImage = UIGraphicsGetImageFromCurrentImageContext() | |
| UIGraphicsEndImageContext() | |
| return UIColor(patternImage: backgroundColorImage) | |
| } | 
  
    Sign up for free
    to join this conversation on GitHub.
    Already have an account?
    Sign in to comment