0

我正在寻找一种在视图作为模态视图存在时在加载视图后旋转视图的方法。

我通过调用来唤起我的观点:

[self presentModalViewController:cntrol animated:YES];

在那个模态视图控制器中,我通过以下方式旋转:

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)orientation {
    return  (orientation == UIInterfaceOrientationLandscapeRight);
}
4

1 回答 1

1

您可以使用变换来旋转视图。

CGAffineTransform transform = CGAffineTransformMakeRotation(3.14159/2);
self.view.transform = transform;
于 2010-08-09T16:14:50.503 回答