Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以在 iOS 7 中使用视图的 CALayer 在子视图控制器后面绘制阴影。我之前没有使用过 CALayer 代码,但在互联网上找到了各种示例,但没有一个有效。不过,我可能会错过一个更好的观点。
谢谢
在子视图控制器的视图上放置阴影时,我遇到了同样的问题。在我将 clipsToBounds 属性设置为 NO 之前它不会显示。(Apple 文档说默认值为 NO,但在我的发现中显然不适用于子视图控制器)
我弄清楚我做错了什么。有两件事你需要注意
1) 确保子视图控制器层的背景颜色不透明 2) 确保要添加背景阴影的子视图控制器添加在要阴影的子视图控制器之后。