iOS Fade尾部视图不褪色

时间:2019-05-18 07:53:46

标签: ios cagradientlayer

根据此https://stackoverflow.com/a/25408833/2139691,我有以下代码:

let gradient = CAGradientLayer()
gradient.frame = self.view.bounds
gradient.colors = [UIColor.white.cgColor, UIColor.clear.cgColor]
gradient.startPoint = CGPoint(x: 0.5, y: 0.93)
gradient.endPoint = CGPoint(x: 0.5, y: 1)
self.view.layer.mask = gradient

这不是我所需要的,因为文本也消失了。 enter image description here

这就是我需要的,请看一下易于阅读的白色文字:

enter image description here

0 个答案:

没有答案