gpt4 book ai didi

iOS如何为圆角添加阴影效果示例代码

转载 作者:qq735679552 更新时间:2022-09-27 22:32:09 25 4
gpt4 key购买 nike

CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.

这篇CFSDN的博客文章iOS如何为圆角添加阴影效果示例代码由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.

前言 。

大家都知道在ios中为uiview添加阴影还是比较简单的,只需要设置layer的shadow属性就可以了,但是问题在于设置阴影之后,必须设置maskstobounds为no,而圆角图片则要求maskstobounds必须为yes,两者相互冲突,会导致无法正确的添加阴影。下面就来给大家介绍正确为圆角添加阴影的效果,话不多说了,来一起看看详细的介绍吧.

先来看看效果图:

iOS如何为圆角添加阴影效果示例代码

正确的做法:

先创建一个透明的uiview,并添加阴影,设置maskstobounds为no; 。

然后在透明的uiview上添加圆角图片,在subview上设置maskstobounds为yes; 。

这样,就可以完美实现对应的阴影了.

示例代码 。

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
let baseview = uiview(frame: cgrect(x: 100, y: 100, width: 100, height: 100))
// add the shadow to the base view
baseview.backgroundcolor = uicolor.clear
baseview.layer.shadowcolor = uicolor.black.cgcolor
baseview.layer.shadowoffset = cgsize(width: 3, height: 3)
baseview.layer.shadowopacity = 0.7
baseview.layer.shadowradius = 4.0
self.view.addsubview(baseview)
 
// add any other subcontent that you want clipped
let othersubcontent = uiimageview()
othersubcontent.image = uiimage(named: "lion" )
othersubcontent.frame = baseview.bounds
othersubcontent.layer.maskstobounds = true
othersubcontent.layer.cornerradius = 50
baseview.addsubview(othersubcontent)

总结 。

以上就是这篇文章的全部内容了,本文还有许多不足,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,如果有疑问大家可以留言交流,谢谢大家对我的支持.

原文链接:http://www.jianshu.com/p/d7232dcb2259 。

最后此篇关于iOS如何为圆角添加阴影效果示例代码的文章就讲到这里了,如果你想了解更多关于iOS如何为圆角添加阴影效果示例代码的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com