tags:

views:

19

answers:

1

How would you insert it behind the main view?

Thanks,

David

A: 

You can use insertSubview:belowSubview:

[mainView.superview insertSubview:imageView belowSubview:mainView];
progrmr