How can I insert a subview below the other subviews
everyone. I have some labels that I draw them in the xib file, and add a background view using codes,but the background view is in the front of these labels, so I cant see them. So, my question is how can I add a background view below these labels. Thank you in advance. If you Google UIView you'll end up at the documentation - UIView Class Reference Then you need to look down the list of methods until you find something that sounds like it will roughly fit your needs like these two: - (void)insertSubview:(UIView *)view atIndex:(NSInteger)index and - (void)insertSubview:(UIView *)view