眼眸繁星
目标C:UIView *view = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 320, 50)];CAGradientLayer *gradient = [CAGradientLayer layer];gradient.frame = view.bounds;gradient.colors = @[(id)[UIColor whiteColor].CGColor, (id)[UIColor blackColor].CGColor];[view.layer insertSublayer:gradient atIndex:0];迅速:let view = UIView(frame: CGRect(x: 0, y: 0, width: 320, height: 50))let gradient = CAGradientLayer()gradient.frame = view.boundsgradient.colors = [UIColor.white.cgColor, UIColor.black.cgColor]view.layer.insertSublayer(gradient, at: 0)信息:使用startPoint和endPoint 更改渐变的方向。如果还添加了其他视图UIView(例如UILabel),则可能需要考虑将其的背景色设置为UIView,[UIColor clearColor]以便显示渐变视图而不是子视图的背景色。使用clearColor对性能有轻微影响。