我正在寻找一种在视图作为模态视图存在时在加载视图后旋转视图的方法。
我通过调用来唤起我的观点:
[self presentModalViewController:cntrol animated:YES];
在那个模态视图控制器中,我通过以下方式旋转:
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)orientation {
return (orientation == UIInterfaceOrientationLandscapeRight);
}