带阴影的 UIView

发布于 2024-10-15 21:04:30 字数 79 浏览 4 评论 0原文

我试图在一个简单的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

假扮的天使 2024-10-22 21:04:30

首先,确保导入 Quartz Core 库:

#import <QuartzCore/QuartzCore.h>

接下来,添加以下行来设置阴影的属性:

someView.layer.shadowColor = [[UIColor blackColor] CGColor];
someView.layer.shadowOffset = CGSizeMake(10.0f,10.0f);
someView.layer.shadowOpacity = .5f;
someView.layer.shadowRadius = 10.0f;

请记住,如果将该视图的 ClipsToBounds 属性设置为 YES,则阴影将不会出现。

First, be sure to import the Quartz Core library:

#import <QuartzCore/QuartzCore.h>

Next, add the following lines to set up the shadow's properties:

someView.layer.shadowColor = [[UIColor blackColor] CGColor];
someView.layer.shadowOffset = CGSizeMake(10.0f,10.0f);
someView.layer.shadowOpacity = .5f;
someView.layer.shadowRadius = 10.0f;

Keep in mind that if you have that view's clipsToBounds property set to YES, the shadow won't appear.

我花了一些时间才弄清楚。代码工作完美,但你应该导入quartz

#import <QuartzCore/QuartzCore.h>

It took me some time to figure it out. Code works perfect but you should import quartz

#import <QuartzCore/QuartzCore.h>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文