iosuiviewbringtofront

how does one bring superview to front?


Normally developers try to bring subview to front. On contrary, how does one bring superview to front?

I'm looking for a reverse of bringSubviewToFront(_:). It should look like bringSuperviewToFront(_:)


Solution

  • I'm looking for a reverse of bringSubviewToFront(:). It should look like bringSuperviewToFront(:)

    That doesn't exist. Instead of giving your button a subview, make both the subview and the button subviews of some container. Then you can adjust their relative z positions to suit your purpose.