I know of a function that brings a view to the front.
[self.view bringSubviewToFront:myView];
I am wondering if there is a function that sends a subview to the back.
Try,
Objective C:
[self.view sendSubviewToBack: yourView];
Swift:
self.view.sendSubview(toBack: yourView)