Created
July 7, 2020 18:24
-
-
Save mnaruse/63b2b65a911059049fcb74cd3700c1ed to your computer and use it in GitHub Desktop.
A gradientLayer sample.
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
let gradientLayer = CAGradientLayer() | |
gradientLayer.frame = rect | |
gradientLayer.colors = [ | |
UIColor.orange.cgColor, | |
UIColor.red.cgColor, | |
UIColor.purple.cgColor, | |
UIColor.blue.cgColor | |
] | |
gradientLayer.startPoint = CGPoint(x: 0.0, y: 0.0) | |
gradientLayer.endPoint = CGPoint(x: 1.0, y: 1.0) | |
self.layer.addSublayer(gradientLayer) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment