美文网首页iOS吧
iOS View设置渐变色

iOS View设置渐变色

作者: 酒深巷子Ya | 来源:发表于2017-09-19 09:38 被阅读17次
    _headView = [[UIView alloc] initWithFrame:CGRectMake(0, 64, _WIDTH, 200)];
    CAGradientLayer *viewALayer = [CAGradientLayer layer];
    viewALayer.frame = _headView.bounds;
    viewALayer.colors = [NSArray arrayWithObjects:
                       (id)[UIColor colorWithRed:49/255.0 green:202/255.0 blue:111/255.0 alpha:1.0].CGColor,
                       (id)[UIColor colorWithRed:123/255.0 green:222/255.0 blue:167/255.0 alpha:1.0].CGColor,
                       (id)[UIColor whiteColor].CGColor, nil];
    [_headView.layer addSublayer: viewALayer];

相关文章

网友评论

    本文标题:iOS View设置渐变色

    本文链接:https://www.haomeiwen.com/subject/xuxwsxtx.html