渐变图层

2016-07-04  本文已影响48人  Coder007

渐变图层

使用步骤
    // 渐变图层
    CAGradientLayer *gradientL = [CAGradientLayer layer];
    gradientL.frame = self.bottomView.bounds;
    // 设置透明度
    gradientL.opacity = 0;
    // 设置颜色
    gradientL.colors = @[(id)[UIColor clearColor].CGColor, (id)[UIColor blackColor].CGColor];
    self.gradienL = gradientL;
    // 设置渐变定位点
    gradientL.locations = @[@0.1, @0.4, @0.5];
    // 设置渐变开始点,取值0-1
    gradientL.startPoint = CGPointMake(0, 0);

    [self.bottomView.layer addSublayer:self.gradienL];
zhe'di't
    // 设置显示尺寸
    self.topView.layer.contentsRect = CGRectMake(0, 0, 1, 0.5);
    // 设置锚点
    self.topView.layer.anchorPoint = CGPointMake(0.5, 1);
上一篇下一篇

猜你喜欢

热点阅读