作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个 UILabel,这个标签有一个填充的背景颜色(它是我的 textView 的标题)。我想启用阴影,以便该深色阴影落在 TextView 上。
我已经在标签文本上实现了阴影。
descriptionLabel.layer.shadowColor = [[UIColor blackColor] CGColor];
descriptionLabel.layer.shadowOffset = CGSizeMake(4.0f, 0.0f);
descriptionLabel.layer.shadowOpacity = 1.0f;
descriptionLabel.layer.shadowRadius = 1.0f;
但是我希望阴影位于标签的完整框架下方(所以不是文本)。
最佳答案
您可以将阴影路径更改为显式矩形,而不是使用图层内容:
CGPathRef shadowPath = CGPathCreateWithRect(descriptionLabel.bounds, NULL);
descriptionLabel.layer.shadowPath = shadowPath;
CGPathRelease(shadowPath);
这也是一种非常常见的技术,可以在向 View 添加阴影时提高渲染性能。绘制固定的矩形阴影比基于图层内容的阴影绘制速度要快很多倍。
关于iphone - 如何在 UILabel 的背景框架上设置阴影?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10832751/
我是一名优秀的程序员,十分优秀!