In an iOS app, is it possible to display a popover behind other elements?
For example, if I have a UIView* myView
already containing several subviews, and I create a new subview, UIView* popopverView
, and call presentPopoverFromRect
in the view popopverView
, it still displays in front of the elements in the other subviews, even if I call [myView sendSubviewToBack:popoverView]
I have tested other elements such as buttons, and they display behind the other elements. Is it inherent for popovers to display on top of all subviews?