如何使用 Quartz 2D 向 UIImage 或 UIImageView 添加阴影?
如何使用 Quartz 2D 向 UIImage
或 UIImageView
添加阴影?
有代码示例吗?
How do I use Quartz 2D to add drop shadow to an UIImage
or UIImageView
?
Any code samples?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不要忘记在您的实现中
#import
。编辑:
添加@Luke的评论:
只是一个小问题,可能会节省其他人一些时间,确保您没有设置
layer.masksToBounds
在视图上选择YES
,否则阴影不会出现。Don't forget to
#import <QuartzCore/QuartzCore.h>
in your implementation.EDIT:
Adding in @Luke's comment:
Just a little gotcha that might save some other people some time make sure you have not set
layer.masksToBounds
toYES
on your view otherwise the shadow will not appear.使用:
Use: