Skip to content

Instantly share code, notes, and snippets.

@maximbilan
Last active August 29, 2015 14:25
Show Gist options
  • Save maximbilan/105f8289b4e3f5d6cf2c to your computer and use it in GitHub Desktop.
Save maximbilan/105f8289b4e3f5d6cf2c to your computer and use it in GitHub Desktop.
iOS UIView with gradient
var gradient: CAGradientLayer = CAGradientLayer()
gradient.frame = view.bounds
gradient.colors = [UIColor(rgba: "#71B280").CGColor, UIColor(rgba: "#134E5E").CGColor]
self.view.layer.insertSublayer(gradient, atIndex: 0)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment