addSubview beneath another UIView
How about the UIView method: insertSubview:belowSubview:
.
It's right there in the "Managing the View Hierarchy" section of the UIView docs.
In Swift:
self.view.insertSubview(newView, belowSubview: yourLabel)
you can use :
[self.view insertSubview:topview belowSubview:buttomView];