sendSubviewToBack API is what you want for this task.
Moves the specified preview so that it appears behind his brothers and sisters.
This method moves the specified view to the beginning of the array of views in the subviews property.
UIView class reference
The following is a snippet of code in Swift lang on how to call this API:
Swift
yourSuperview.sendSubviewToBack(yourSubview)
source share