I want to place a view (firstView) back to another view (secondView). SecondView is basically a barchart using CGContext.
I guess I can’t use bringViewToFront there. So I need to place firstView back to secondView. Is there some default function to place a view back to some other view?
The inverse of
bringSubviewToFront:issendSubviewToBack:.Another option is to use
insertSubview:belowSubview:orexchangeSubviewAtIndex:withSubviewAtIndex:.