Created
November 8, 2017 04:56
-
-
Save RayPS/60f0e3cc56395d468d656cd26bd9255d to your computer and use it in GitHub Desktop.
Gradient Mask
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
let gradient = CAGradientLayer() | |
gradient.colors = [ | |
UIColor.black.cgColor, | |
UIColor.black.cgColor, | |
UIColor.clear.cgColor | |
] | |
gradient.locations = [ | |
0, | |
0.9, | |
1 | |
] | |
gradient.frame = view.frame | |
view.layer.mask = gradient |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment