I\'m dragging things around in the Interface Builder... I\'d like to specify whether an image is in front (like an indicator) or behind of a button (like a background). I d
What worked for me was doing it in code:
self.view.sendSubviewToBack(imageView);
I don't know why but none of the other answers fixed it for good. I put the line above in the viewDidLoad method.