Essentially I would like to add a UIImage programmatically to my interface, using:
[[self view] addSubview: myImage]
However, I would like to add the image BEHIND an existing image already present in the interface builder. Is there a method to accomplish this?
Use
i specifies the z index, where a higher index will be above a view with a lower index, so if i = 0 the view will be at the bottom.