美文网首页
ios 设置阴影

ios 设置阴影

作者: 一个萝卜X个坑 | 来源:发表于2018-09-18 13:43 被阅读13次
    -(instancetype)initWithFrame:(CGRect)frame{
        self = [super initWithFrame:frame];
        if (self) {
            self.backgroundColor = colorStr(@"ffffff");
            //v.layer.masksToBounds=YES;这行去掉
            self.layer.cornerRadius = 10;
            self.layer.shadowColor = colorStr(@"#0B234D").CGColor;//阴影颜色
            self.layer.shadowOffset = CGSizeMake(0, 0);//偏移距离
            self.layer.shadowOpacity = 0.5;//不透明度
            self.layer.shadowRadius = 5;//半径
            
        }
        return self;
    }
    

    相关文章

      网友评论

          本文标题:ios 设置阴影

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