I have a UITableViewController
with a custom UIView
as a subview. When I rotate the iPhone from portrait to landscape orientation the UIView
subview rotates correctly but does not resize correctly. How can I resize the custom开发者_如何学运维 UIView
when the device is rotated?
Set the UIView
's autoresizingMask
like so:
myView.autoresizingMask = UIViewAutoresizingFlexibleWidth|UIViewAutoresizingFlexibleHeight;
This should mean that the view resizes itself automatically on rotation.
精彩评论