带阴影的 UIView
我试图在一个简单的 UIView 对象周围创建一个阴影,该对象添加到 UIViewController 视图的顶部。 这样做最直接的方法是什么?
I'm trying to create a shadow around a simple UIView object which is added on top of a UIViewController's view.
what's the most straight forward way of doing this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
首先,确保导入 Quartz Core 库:
接下来,添加以下行来设置阴影的属性:
请记住,如果将该视图的 ClipsToBounds 属性设置为 YES,则阴影将不会出现。
First, be sure to import the Quartz Core library:
Next, add the following lines to set up the shadow's properties:
Keep in mind that if you have that view's clipsToBounds property set to YES, the shadow won't appear.
我花了一些时间才弄清楚。代码工作完美,但你应该导入quartz
It took me some time to figure it out. Code works perfect but you should import quartz