Swift bringSubViewToFront not working
It should be this:
self.view.bringSubview(toFront: self.wholeScreenButton)
You need to call bringSubviewToFront on the parent view.
try this:
self.wholeScreenButton.superView.bringSubviewToFront(self.wholeScreenButton)
this ll work everytime for me