I have subclassed UIView
and added a drawRect
method to it. Then I define a view using this custom class and add subviews to it.
The problem is that drawRect
seem to draw stuff under the subviews (hence not visible).
I want stuff that drawRect
draws appear above the subviews of my custom UIView
.
Is this possible?