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

Popular posts from this blog

python - Operations inside variables -

Generic Map Parameter java -

arrays - What causes a java.lang.ArrayIndexOutOfBoundsException and how do I prevent it? -