Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
230 views
in Technique[技术] by (71.8m points)

ios - Why can't we put subviews of a UIView in front of its CALayer?

As the title of this post, I found the answer regarding "Can we put subviews of a UIView in front of its CALayer" in this post, but I cannot find the answer to why this is so. In my opinion, having the view as the subview of the layer's view only suggests "stronger" order between the subview and the layer. Can somebody explain this to me?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

Each view is backed by a CALayer and the layer tree is a superset of the view tree. Therefore every subview you add to a view has its corresponding layer added to its superview's layer. Since its a child of the parent layer and layers are rendered from the top of thee tree down, you cannot change the render order.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...