I’m doing a bit of UIView wrangling and am stuck. It is straightforward changing the “z” order of sibling subviews. [mySuperview sendSubviewToBack:mySubview] places mySubview behind all it’s siblings.
But how do I place a subview behind it’s parent?
Thanks,
Doug
You may want to put both into a container view, so that you can properly place one behind the other without affecting a superview not really meant to hold arbitrary views (although that will probably work just fine).