解决方法
提供didRotateFromInterfaceOrientation方法的实现并将所有子视图居中.
- (void)didRotateFromInterfaceOrientation:(UIInterfaceOrientation)fromInterfaceOrientation { for(UIView *subview in [self.view subviews]) { subview.center = self.view.center; } }