How do I arrange (in terms of depth) a view's subview to be in front of another view?
The hierarchy looks like this:
A--
-C
-D
B--
-E
-F
(A and B are views with C & D, and E & F, as subviews, respectively.)
B is layered above A, so every subview in B (E and F) is above every subview in A (C and D). How can I make C display above everything in B, but have the rest remain as it should be?
In other words, how can I make the order of displayed views (the first in the list is the topmost, with the next one drawn behind it):
C
B
E & F (same level)
A
D
Thanks, Arseniy