美文网首页
iOS为layer添加阴影

iOS为layer添加阴影

作者: 小朤 | 来源:发表于2017-01-19 10:24 被阅读0次

    为一个UIview 添加阴影:

    UIView *shadow = [[UIView alloc] initWithFrame:CGRectMake(30, 30, 100, 100)];

    shadow.backgroundColor = [UIColor whiteColor];

    shadow.layer.shadowColor = [UIColor blackColor].CGColor;//shadowColor阴影颜色

    shadow.layer.shadowOffset = CGSizeMake(4,0);//shadowOffset阴影偏移,x向右偏移4,y向下偏移4,默认(0, -3),这个跟shadowRadius配合使用

    shadow.layer.shadowOpacity = 0.8;//阴影透明度,默认0

    shadow.layer.shadowRadius = 4;//阴影半径,默认3

    相关文章

      网友评论

          本文标题:iOS为layer添加阴影

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