Is it possible on iOS that a view always floats above all other views. I ask this because what I would like to achieve is a view that floats above a ViewController, and then a Modal View Controller slides in, whilst that particular view is still floating over that Modal View Controller (hope you get what I am trying to say).
Share
There is. You can add your view to the main
windowand bring it to front when you have to.In following code is presumed that
_viewConrollerand_anotherVieware strong properties of appDelegate – configuration could of course be different.This code would add small blue square on top left corner of the screen.