Hello,
I have a UIView that will eventually contain a child, another UIView.
What I would like to do is ensure that the child is always oriented in the lower left corner of the screen, regardless of orientation. If I add the view at position (0, 0), the subview will remain in the top left corner, regardless of orientation. My question is, how can I get my subview to remain in the lower left corner?
What parameters / autoresizing masks, etc. must I specify when I create the view to get this to happen?
Thanks.