Last active
August 29, 2015 14:25
-
-
Save maximbilan/105f8289b4e3f5d6cf2c to your computer and use it in GitHub Desktop.
iOS UIView with gradient
This file contains 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
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