Hi there
I have all my subviews set up so that they are based on self.view
.
EG: UIImageView *image = [[UIImageView alloc] initWithFrame:CGRectMake(0,0,(self.view.frame.size.width-20),(self.view.frame.size.height-90))];
however when the view rotates (shouldRotateToDeviceOrientation
or whatever) the views all stay the same size. How can I make them change shape to fit? Can I do this automatically?
Thanks