ios - Add a subview programatically at the bottom of other view -
i created uiview , added uilabels through interface builder. want add uiview view programatically.
self.view.addsubview(newview) the problem newview hides part of label have created interface builder. how can make newview on bottom of subviews?
this achieve
self.view.insertsubview(newview, at: 0)
Comments
Post a Comment