views:

134

answers:

1

I have a CATiledLayer within a UIView and the UIView also contains a subview. How can I make sure that the subview is always drawn above the layer?

Most of the time I get the tile layer covering the subview.

+1  A: 

By default all layers (hence views) added in the last are drawn on the top. You can change the default with -insertSublayer:below: and similar methods:

 [view.layer insertSublayer:tiledLayer below:thatSubview.layer]
KennyTM