美文网首页
iOS view添加阴影

iOS view添加阴影

作者: iOS门三闫 | 来源:发表于2019-08-10 17:47 被阅读0次

    UIBezierPath*shadowPath =[UIBezierPath bezierPathWithRect:imageView.bounds];

    imageView.layer.masksToBounds =NO;

    imageView.layer.shadowColor =[UIColor blackColor].CGColor;

    imageView.layer.shadowOffset = CGSizeMake(0.0f,5.0f);

    imageView.layer.shadowOpacity = 0.5f;

    imageView.layer.shadowPath = shadowPath.CGPath;

    相关文章

      网友评论

          本文标题:iOS view添加阴影

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