iOS设置阴影

iOS设置阴影,第1张

在通过这样的方式设置阴影时,必须把父视图的masksToBounds属性关掉,因为阴影设置的方式就是加offset给超出视图部分设置颜色来实现的,一旦不让子视图超出,阴影也就看不出了。

圆角+阴影:

如果上面的方法一起用,把masksToBounds开了,阴影无法显示,关了的话其上的View又会遮住圆角。解决的方式只能是再加一层layer。

swift版:

shadowoffset: +, + 是右下 -,+是左下 +,-是右上 -,-是左上

这是从xcode里面摘取的内容,苹果的官方文档

/** Shadow properties. **/

/* The color of the shadow. Defaults to opaque black. Colors created

* from patterns are currently NOT supported. Animatable. */

@property(nullable) CGColorRef shadowColor

/* The opacity of the shadow. Defaults to 0. Specifying a value outside the

* [0,1] range will give undefined results. Animatable. */

@property float shadowOpacity

/* The shadow offset. Defaults to (0, -3). Animatable. */

@property CGSize shadowOffset

/* The blur radius used to create the shadow. Defaults to 3. Animatable. */

@property CGFloat shadowRadius

/* When non-null this path defines the outline used to construct the

其实就是三个属性

后面这个是做的效果图

form http://blog.csdn.net/rhljiayou/article/details/10178723


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/bake/11277025.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-14
下一篇 2023-05-14

发表评论

登录后才能评论

评论列表(0条)

保存